Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for regressed (0.14 sec)

  1. src/net/pipe.go

    }
    
    // set sets the point in time when the deadline will time out.
    // A timeout event is signaled by closing the channel returned by waiter.
    // Once a timeout has occurred, the deadline can be refreshed by specifying a
    // t value in the future.
    //
    // A zero value for t prevents timeout.
    func (d *pipeDeadline) set(t time.Time) {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    
    	if d.timer != nil && !d.timer.Stop() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pkg/apis/apidiscovery/types.go

    	// +listType=map
    	// +listMapKey=resource
    	Resources []APIResourceDiscovery
    	// freshness marks whether a group version's discovery document is up to date.
    	// "Current" indicates the discovery document was recently
    	// refreshed. "Stale" indicates the discovery document could not
    	// be retrieved and the returned discovery document may be
    	// significantly out of date. Clients that require the latest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. src/internal/trace/reader.go

    			return ok, err
    		}
    
    		// Refresh the cursor's event.
    		ok, err := bc.nextEvent(r.gen.batches[bc.m], r.gen.freq)
    		if err != nil {
    			return false, err
    		}
    		if ok {
    			// If we successfully refreshed, update the heap.
    			heapUpdate(r.frontier, i)
    		} else {
    			// There's nothing else to read. Delete this cursor from the frontier.
    			r.frontier = heapRemove(r.frontier, i)
    		}
    		return true, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      repeated APIResourceDiscovery resources = 2;
    
      // freshness marks whether a group version's discovery document is up to date.
      // "Current" indicates the discovery document was recently
      // refreshed. "Stale" indicates the discovery document could not
      // be retrieved and the returned discovery document may be
      // significantly out of date. Clients that require the latest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

            }
        }
    }
    
    resolve.doLast { assert ruleInvoked }
    """
    
            then:
            succeeds 'resolve'
        }
    
        def "changed Ivy metadata becomes visible once module is refreshed"() {
            def baseScript = buildFile.text
    
            given:
            repository {
                'org.test:projectA:1.0' {
                    withModule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

        // because of branch
        @RequiredFeature(feature=GradleMetadataResolveRunner.GRADLE_METADATA, value="false")
        def "changed component metadata becomes visible when module is refreshed" () {
    
            def commonBuildFile = buildFile.text + """
                dependencies {
                    conf "org.utils:api:1.+"
                }
    
                def status11 = null
                def branch11 = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

                dim {
                  size: -1
                }
                dim {
                  size: 1
                }
              }
            }
          }
          method_name: "tensorflow/serving/regress"
        }
      }
      signature_def {
        key: "regress_x_to_y"
        value {
          inputs {
            key: "inputs"
            value {
              name: "tf_example:0"
              dtype: DT_STRING
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// freshness marks whether a group version's discovery document is up to date.
    	// "Current" indicates the discovery document was recently
    	// refreshed. "Stale" indicates the discovery document could not
    	// be retrieved and the returned discovery document may be
    	// significantly out of date. Clients that require the latest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pilot/pkg/model/jwks_resolver.go

    	jwksuriChannel = make(chan jwtKey, 5)
    )
    
    // jwtPubKeyEntry is a single cached entry for jwt public key and the http context options
    type jwtPubKeyEntry struct {
    	pubKey string
    
    	// The last success refreshed time of the pubKey.
    	lastRefreshedTime time.Time
    
    	// Cached item's last used time, which is set in GetPublicKey.
    	lastUsedTime time.Time
    
    	// OpenID Discovery web request timeout
    	timeout time.Duration
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. pkg/apis/core/helper/helpers_test.go

    			name:     core.ResourceName("hugepages-2Mi"),
    		},
    		{
    			pageSize: resource.MustParse("1Gi"),
    			name:     core.ResourceName("hugepages-1Gi"),
    		},
    		{
    			// verify we do not regress our canonical representation
    			pageSize: *resource.NewQuantity(int64(2097152), resource.BinarySI),
    			name:     core.ResourceName("hugepages-2Mi"),
    		},
    	}
    	for _, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top