Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 261 for segs (0.05 sec)

  1. tensorflow/c/c_api_test.cc

                                                                 TF_DeleteGraph);
    
      TF_SessionOptions* opts = TF_NewSessionOptions();
      TF_Session* sess = TF_NewSession(graph.get(), opts, s);
      TF_DeleteSessionOptions(opts);
    
      const string gpu_device_name = GPUDeviceName(sess);
      TF_DeleteSession(sess, s);
      CHECK_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      return gpu_device_name;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/v1alpha1/defaults.go

    	}
    	if obj.Conntrack.TCPCloseWaitTimeout == nil {
    		// See https://github.com/kubernetes/kubernetes/issues/32551.
    		//
    		// CLOSE_WAIT conntrack state occurs when the Linux kernel
    		// sees a FIN from the remote server. Note: this is a half-close
    		// condition that persists as long as the local side keeps the
    		// socket open. The condition is rare as it is typical in most
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. pkg/kubelet/token/token_manager_test.go

    		},
    	}
    
    	for i, c := range cases {
    		t.Run(fmt.Sprint(i), func(t *testing.T) {
    			clock := testingclock.NewFakeClock(c.now)
    			secs := int64(c.exp.Sub(start).Seconds())
    			tr := &authenticationv1.TokenRequest{
    				Spec: authenticationv1.TokenRequestSpec{
    					ExpirationSeconds: &secs,
    				},
    				Status: authenticationv1.TokenRequestStatus{
    					ExpirationTimestamp: metav1.Time{Time: c.exp},
    				},
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  4. internal/jwt/parser.go

    	return &StandardClaims{}
    }
    
    // SetIssuer sets issuer for these claims
    func (c *StandardClaims) SetIssuer(issuer string) {
    	c.Issuer = issuer
    }
    
    // SetAudience sets audience for these claims
    func (c *StandardClaims) SetAudience(aud string) {
    	c.Audience = aud
    }
    
    // SetExpiry sets expiry in unix epoch secs
    func (c *StandardClaims) SetExpiry(t time.Time) {
    	c.ExpiresAt = t.Unix()
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

    2019-10-03T09:33:08.990+0200 [DEBUG] [org.gradle.execution.plan.DefaultPlanExecutor] Task worker [Thread[main,5,main]] finished, busy: 0.0 secs, idle: 0.021 secs
    \u001B[0K
    \u001B[0K
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ComponentMetadataDetailsAdapterTest.groovy

        private MutableMavenModuleResolveMetadata mavenComponentMetadata() {
            mavenMetadataFactory.create(componentIdentifier, [])
        }
    
        def setup() {
            schema.attribute(testAttribute)
        }
    
        def "sees variants defined in Gradle metadata"() {
            given:
            def rule = Mock(Action)
    
            when:
            adapterOnGradleMetadata.withVariant("variantDefinedInGradleMetadata1", rule)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

     * - A different version of swiftc is used
     * - Different compiler arguments are used
     *
     * We work around issues with timestamps by changing module.swiftdeps and setting any changed files to
     * a timestamp of 0.  swiftc then sees those source files as different from the last compilation.
     *
     * If we have any issues reading or writing the swiftdeps file, we bail out and disable incremental compilation.
     */
    @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/sync/waitgroup.go

    // at any time.
    // Typically this means the calls to Add should execute before the statement
    // creating the goroutine or other event to be waited for.
    // If a WaitGroup is reused to wait for several independent sets of events,
    // new Add calls must happen after all previous Wait calls have returned.
    // See the WaitGroup example.
    func (wg *WaitGroup) Add(delta int) {
    	if race.Enabled {
    		if delta < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/time/zoneinfo.go

    	}
    	off += mins * secondsPerMinute
    	if len(s) == 0 || s[0] != ':' {
    		if neg {
    			off = -off
    		}
    		return off, s, true
    	}
    
    	var secs int
    	secs, s, ok = tzsetNum(s[1:], 0, 59)
    	if !ok {
    		return 0, "", false
    	}
    	off += secs
    
    	if neg {
    		off = -off
    	}
    	return off, s, true
    }
    
    // ruleKind is the kinds of rules that can be seen in a tzset string.
    type ruleKind int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. pkg/kube/kclient/index_test.go

    		return []string{pod.Spec.ServiceAccountName}
    	}, controllers.EventHandler[*corev1.Pod]{
    		AddFunc: func(obj *corev1.Pod) {
    			// Assert that our handler sees the incoming update (and doesn't run before)
    			sa := obj.Spec.ServiceAccountName
    			got := index.Lookup(sa)
    			for _, p := range got {
    				if p.Name == obj.Name {
    					adds.Inc()
    					return
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top