Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 370 for disallows (0.31 sec)

  1. src/syscall/exec_linux_test.go

    					}
    					t.Fatalf("got non-permission error") // Already logged above.
    				}
    				return
    			}
    
    			if err != nil {
    				if testenv.SyscallIsNotSupported(err) {
    					// May be inside a container that disallows CLONE_NEWUSER.
    					t.Skipf("skipping: CLONE_NEWUSER appears to be unsupported")
    				}
    				t.Fatalf("unexpected command failure; output:\n%s", out)
    			}
    
    			sout := strings.TrimSpace(string(out))
    			want := "root"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    # excludes all but a subset of function names.
    # On MacOS, the linker does not support version_script, but has an
    # an "-exported_symbols_list" command.  -z defs disallows undefined
    # symbols in object files.
    
    tf_cc_shared_object(
        name = "tensorflow",
        linkopts = select({
            "//tensorflow:macos": [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // functions:
    //
    //   bool AllowDynamicRangeQuantizedOperand(Operation *) const
    //   bool AllowDynamicRangeQuantizedResult(Operation *) const
    //
    // Full integer quantization disallows "DynamicRangeQuantized" operands or
    // results. Dynamic range quantization allows "DynamicRangeQuantized" operands
    // and results.
    template <typename ConcreteT, typename QuantizeOpT, typename DequantizeOpT,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. cmd/erasure-multipart.go

    		}
    		if err != nil && !isErrVersionNotFound(err) && !isErrObjectNotFound(err) && !isErrReadQuorum(err) {
    			return ObjectInfo{}, err
    		}
    	}
    
    	// Hold write locks to verify uploaded parts, also disallows any
    	// parallel PutObjectPart() requests.
    	uploadIDLock := er.NewNSLock(bucket, pathJoin(object, uploadID))
    	wlkctx, err := uploadIDLock.GetLock(ctx, globalOperationTimeout)
    	if err != nil {
    		return oi, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcs/vcs.go

    	}
    
    	private := module.MatchPrefixPatterns(cfg.GOPRIVATE, root)
    	if !govcs.allow(root, private, vcs.Cmd) {
    		what := "public"
    		if private {
    			what = "private"
    		}
    		return fmt.Errorf("GOVCS disallows using %s for %s %s; see 'go help vcs'", vcs.Cmd, what, root)
    	}
    
    	return nil
    }
    
    // RepoRoot describes the repository root for a tree of source code.
    type RepoRoot struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:configuration_avoidance]]
    === Configuration Avoidance API disallows common configuration errors
    
    The <<task_configuration_avoidance.adoc#task_configuration_avoidance, configuration avoidance API>> introduced in Gradle 4.9 allows you to avoid creating and configuring tasks that are never used.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultMutationGuardTest.groovy

        }
    
        def "doesn't throw exception when calling disallowed method when allowed"() {
            when:
            disallowedMethod()
    
            then:
            noExceptionThrown()
        }
    
        def "call to #methodUnderTest(#callableType) inside withMutationDisabled(Action) does not disable disallow check"() {
            def aMethodUnderTest = methodUnderTest
            def aCallable = callable
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/security_test.go

    	if err := checkCompilerFlags("TEST", "test", []string{"-disallow"}); err == nil {
    		t.Fatalf("missing error for -disallow")
    	}
    	os.Setenv("CGO_TEST_ALLOW", "-disallo")
    	if err := checkCompilerFlags("TEST", "test", []string{"-disallow"}); err == nil {
    		t.Fatalf("missing error for -disallow with CGO_TEST_ALLOW=-disallo")
    	}
    	os.Setenv("CGO_TEST_ALLOW", "-disallow")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/security.go

    				return fmt.Errorf("parsing $CGO_%s_DISALLOW: %v", name, err)
    			}
    			disallow = r
    		}
    	}
    
    Args:
    	for i := 0; i < len(list); i++ {
    		arg := list[i]
    		if disallow != nil && disallow.FindString(arg) == arg {
    			goto Bad
    		}
    		if allow != nil && allow.FindString(arg) == arg {
    			continue Args
    		}
    		for _, re := range invalid {
    			if re.FindString(arg) == arg { // must be complete match
    				goto Bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. hack/update-vendor.sh

        xargs -L 100 go mod edit -fmt
    
        go mod tidy -v
    
        # disallow transitive dependencies on k8s.io/kubernetes
        loopback_deps=()
        kube::util::read-array loopback_deps < <(go list all 2>/dev/null | grep k8s.io/kubernetes/ || true)
        if (( "${#loopback_deps[@]}" > 0 )); then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top