Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 640 for corerest (0.3 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    		}
    		if !scenario.shouldSucceed && err == nil {
    			t.Errorf("Test %q failed: Assume() returned success but expected error", name)
    		}
    
    		// Check that GetPV returns correct PV
    		expectedPV := scenario.newPV
    		if !scenario.shouldSucceed {
    			expectedPV = scenario.oldPV
    		}
    		if err := verifyPV(cache, scenario.oldPV.Name, expectedPV); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/dependencies/index.md

    Whenever a new request arrives, **FastAPI** will take care of:
    
    * Calling your dependency ("dependable") function with the correct parameters.
    * Get the result from your function.
    * Assign that result to the parameter in your *path operation function*.
    
    ```mermaid
    graph TB
    
    common_parameters(["common_parameters"])
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      // function attribute prefixed with `"indy_lstm_"`.
      // IndyLSTMs have diagonal recurrent weight matrices and can benefit from
      // more efficent operations in TFLite with the correct conversion (i.e. when
      // the diagonal recurrent weight matrices are provided as vectors).
      if (attr.getValue().starts_with("indy_lstm_")) {
        // Check if the keras lstm can be fused, if not, we just don't do anything.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            wrapper.setDistributionPath("somepath")
            wrapper.setDistributionSha256Sum("somehash")
        }
    
        Wrapper getTask() {
            return wrapper
        }
    
        def "wrapper has correct defaults"() {
            given:
            wrapper = createTask(Wrapper.class)
    
            expect:
            new File(getProject().getProjectDir(), TARGET_WRAPPER_FINAL + "/gradle-wrapper.jar") == wrapper.getJarFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

            }
            // We reschedule ourselves with a lock held for two reasons. 1. we want to make sure that
            // cancel calls cancel on the correct future. 2. we want to make sure that the assignment
            // to currentFuture doesn't race with itself so that currentFuture is assigned in the
            // correct order.
            Throwable scheduleFailure = null;
            Cancellable toReturn;
            lock.lock();
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. pkg/registry/core/rest/storage_core.go

    			return rangeRegistries{}, nil, nil, nil, err
    		}
    		// TODO(aojea) Revisit the initialization of the allocators
    		// since right now it depends on the service-cidr flags and
    		// sets the default IPFamily that may not be coherent with the
    		// existing default ServiceCIDR
    		primaryClusterIPAllocator, err = ipallocator.NewMetaAllocator(
    			networkingv1alphaClient,
    			c.Informers.Networking().V1alpha1().ServiceCIDRs(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/language.go

    const (
    	No    Confidence = iota // full confidence that there was no match
    	Low                     // most likely value picked out of a set of alternatives
    	High                    // value is generally assumed to be the correct match
    	Exact                   // exact match or explicitly specified value
    )
    
    var confName = []string{"No", "Low", "High", "Exact"}
    
    func (c Confidence) String() string {
    	return confName[c]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cache/secretcache_test.go

    	// Ensure that contents of the rootCert are correct.
    	checkSecret(t, sc, security.RootCertReqResourceName, security.SecretItem{
    		ResourceName: security.RootCertReqResourceName,
    		RootCert:     expectedCerts,
    	})
    
    	// Add Duplicates
    	sc.UpdateConfigTrustBundle(expectedCerts)
    	// Ensure that contents of the rootCert are correct without the duplicate caClientRootCert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_test.go

    // testGoldenIEEE verifies that the given function returns
    // correct IEEE checksums.
    func testGoldenIEEE(t *testing.T, crcFunc func(b []byte) uint32) {
    	for _, g := range golden {
    		if crc := crcFunc([]byte(g.in)); crc != g.ieee {
    			t.Errorf("IEEE(%s) = 0x%x want 0x%x", g.in, crc, g.ieee)
    		}
    	}
    }
    
    // testGoldenCastagnoli verifies that the given function returns
    // correct IEEE checksums.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

          return configuration;
        }
      }
    
      // Tests for Scheduler:
    
      // These constants are arbitrary and just used to make sure that the correct method is called
      // with the correct parameters.
      private static final int INITIAL_DELAY = 10;
      private static final int DELAY = 20;
      private static final TimeUnit UNIT = MILLISECONDS;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top