Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 163 for root1 (0.05 sec)

  1. tensorflow/BUILD

                # "-Wl,--undefined-version",
                # copybara:uncomment_end(google-only)
            ],
        }),
        linkstatic = 1,
        per_os_targets = True,
        roots = [
                    "//tensorflow/c/experimental/filesystem:filesystem_interface",
                    "//tensorflow/c/experimental/stream_executor:stream_executor",
                    "//tensorflow/c:env",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				VolumeStatsAggPeriod:           metav1.Duration{Duration: 60 * time.Second},
    				KubeletCgroups:                 "kubelet-cgroup",
    				SystemCgroups:                  "system-cgroup",
    				CgroupRoot:                     "root-cgroup",
    				CgroupsPerQOS:                  utilpointer.Bool(true),
    				CgroupDriver:                   "systemd",
    				CPUManagerPolicy:               "cpu-manager-policy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    istio-token projected: sources: - serviceAccountToken: path: istio-token expirationSeconds: 43200 audience: {{ .Values.global.sds.token.aud }} {{- end }} {{- if eq .Values.global.pilotCertProvider "istiod" }} - name: istiod-ca-cert configMap: name: istio-ca-root-cert {{- end }} {{- if .Values.global.mountMtlsCerts }} # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications. - name: istio-certs secret: optional: true {{ if eq .Spec.ServiceAccountName "" }} secretName: istio.default...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    	}
    	return false, fmt.Errorf("no container %q in pod", containerName)
    }
    
    // describePeerAuthentication fetches all PeerAuthentication in workload and root namespace.
    // It lists the ones applied to the pod, and the current active mTLS mode.
    // When the client doesn't have access to root namespace, it will only show workload namespace Peerauthentications.
    func describePeerAuthentication(
    	writer io.Writer,
    	kubeClient kube.CLIClient,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    istio-token projected: sources: - serviceAccountToken: path: istio-token expirationSeconds: 43200 audience: {{ .Values.global.sds.token.aud }} {{- end }} {{- if eq .Values.global.pilotCertProvider "istiod" }} - name: istiod-ca-cert configMap: name: istio-ca-root-cert {{- end }} {{- if .Values.global.mountMtlsCerts }} # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications. - name: istio-certs secret: optional: true {{ if eq .Spec.ServiceAccountName "" }} secretName: istio.default...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[changes_4.5]]
    == Upgrading from 4.4 and earlier
    
     * Make sure you have a _settings.gradle_ file: it avoids a performance penalty and allows you to set the root project's name.
     * Gradle now ignores the build cache configuration of included builds (<<composite_builds.adoc#composite_builds,composite builds>>) and instead uses the root build's configuration for all the builds.
    
    === Potential breaking changes
    
    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. src/os/os_test.go

    	}
    
    	n := runtime.GOMAXPROCS(16)
    	defer runtime.GOMAXPROCS(n)
    	root, err := MkdirTemp("", "issue")
    	if err != nil {
    		t.Fatal(err)
    	}
    	mkdirTree(t, root, 1, 6)
    	hold := make(chan struct{})
    	var wg sync.WaitGroup
    	for i := 0; i < 4; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			<-hold
    			err := RemoveAll(root)
    			if err != nil {
    				t.Errorf("unexpected error: %T, %q", err, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. cmd/iam.go

    		if err != nil && err != errNoSuchUser {
    			return
    		}
    		if isTemp {
    			err = errIAMActionNotAllowed
    			return
    		}
    
    		// When the user is root credential you are not allowed to
    		// add policies for root user.
    		if userOrGroup == globalActiveCred.AccessKey {
    			err = errIAMActionNotAllowed
    			return
    		}
    
    		// Validate that user exists.
    		var userExists bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    	}}
    
    	for _, test := range tests {
    		source := ""
    		for name, body := range test.inputs {
    			source += fmt.Sprintf("{{define %q}}%s{{end}} ", name, body)
    		}
    		tmpl, err := New("root").Funcs(fns).Parse(source)
    		if err != nil {
    			t.Errorf("error parsing %q: %v", source, err)
    			continue
    		}
    		var b strings.Builder
    
    		if err := tmpl.ExecuteTemplate(&b, "main", data); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            when:
            resolveRelease.prepare()
            run ':a:checkDeps'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkDeps')
            resolveRelease.expectGraph {
                root(":a", "test:a:") {
                    project(':b', 'test:b:') {
                        variant 'bar', [flavor: 'free', buildType: 'release']
                        artifact name: 'b-bar'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
Back to top