Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for isAllowed (2.44 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypesFixed/groovy/settings.gradle

    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)
  10. src/internal/dag/parse.go

    	g := newGraph()
    	disallowed := []rule{}
    
    	rules, err := parseRules(dag)
    	if err != nil {
    		return nil, err
    	}
    
    	// TODO: Add line numbers to errors.
    	var errors []string
    	errorf := func(format string, a ...any) {
    		errors = append(errors, fmt.Sprintf(format, a...))
    	}
    	for _, r := range rules {
    		if r.op == "!<" {
    			disallowed = append(disallowed, r)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top