Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 148 for isAllowed (0.16 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    	// in a given package that are disallowed at the specified Go version.
    	type key struct {
    		pkg     *types.Package
    		version string
    	}
    	memo := make(map[key]map[types.Object]string) // records symbol's minimum Go version
    	disallowedSymbols := func(pkg *types.Package, version string) map[types.Object]string {
    		k := key{pkg, version}
    		disallowed, ok := memo[k]
    		if !ok {
    			disallowed = typesinternal.TooNewStdSymbols(pkg, version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/FilteringClassLoaderSpecSerializerTest.groovy

            def classNames = [ 'allowed.Class1', 'allowed.Class2' ]
            def disallowedClassNames = [ 'disallowed.Class1', 'disallowed.Class2' ]
            def packagePrefixes = [ 'allowed.pkgprefix1.', 'allowed.pkgprefix2' ]
            def disallowedPackagePrefixes = [ 'disallowed.pkgprefix1.', 'disallowed.pkgprefix2.' ]
            def packageNames = [ 'allowed.pkg1', 'allowed.pkg2' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/govcs.txt

    go list
    env GOPROXY=$proxy
    go get rsc.io/quote # ok because used proxy
    env GOPROXY=direct
    
    # svn is disallowed by default
    env GOPRIVATE=
    env GOVCS=
    ! go get rsc.io/nonexist.svn/hello
    stderr '^go: rsc.io/nonexist.svn/hello: GOVCS disallows using svn for public rsc.io/nonexist.svn; see ''go help vcs''$'
    
    # fossil is disallowed by default
    env GOPRIVATE=
    env GOVCS=
    ! go get rsc.io/nonexist.fossil/hello
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/TransportableActionExecutionSpecSerializerTest.groovy

            def classNames = [ 'allowed.Class1', 'allowed.Class2' ]
            def disallowedClassNames = [ 'disallowed.Class1', 'disallowed.Class2' ]
            def packagePrefixes = [ 'allowed.pkgprefix1.', 'allowed.pkgprefix2' ]
            def disallowedPackagePrefixes = [ 'disallowed.pkgprefix1.', 'disallowed.pkgprefix2.' ]
            def packageNames = [ 'allowed.pkg1', 'allowed.pkg2' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    func (m *MapValue) Size() ref.Val {
    	return types.Int(len(m.callbacks))
    }
    
    // ConvertToNative returns an error because it is disallowed
    func (m *MapValue) ConvertToNative(typeDesc reflect.Type) (any, error) {
    	return nil, fmt.Errorf("disallowed conversion from %q to %q", m.typeValue.TypeName(), typeDesc.Name())
    }
    
    // ConvertToType converts the map to the given type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-smuggle-resize.mlir

    // RUN: odml_to_stablehlo %s -skip-resize -smuggle-disallowed-ops -o - | FileCheck %s
    // RUN: odml-to-stablehlo-opt %s --smuggle-disallowed-ops-pass | FileCheck %s --check-prefix=CHECK-OPT
    
    // CHECK-LABEL: @main
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 975 : i32}, tf_saved_model.semantics}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compiler_disable_test.cc

      // Check that async compilation is disallowed.
      status = xla_device_compiler->CompileIfNeeded(
          XlaCompiler::Options{}, fn, args, XlaCompiler::CompileOptions{},
          DeviceCompileMode::kAsync, profiler, &compilation_result, &executable);
      EXPECT_FALSE(status.ok());
      EXPECT_TRUE(absl::StrContains(status.message(), "XLA compilation disabled"));
    
      // Check that lazy compilation is disallowed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypesFixed/kotlin/settings.gradle.kts

    rootProject.name = "disallowed-types-fixed"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypes/groovy/settings.gradle

    rootProject.name = 'disallowed-types'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypes/kotlin/settings.gradle.kts

    rootProject.name = "disallowed-types"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
Back to top