Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for jasper (0.19 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

       * <p>Many of the filtered map's methods, such as {@code size()}, iterate across every key/value
       * mapping in the underlying map and determine which satisfy the filter. When a live view is
       * <i>not</i> needed, it may be faster to copy the filtered map and use the copy.
       *
       * <p><b>Warning:</b> {@code keyPredicate} must be <i>consistent with equals</i>, as documented at
       * {@link Predicate#apply}. Do not provide a predicate such as {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

       * <p>Many of the filtered map's methods, such as {@code size()}, iterate across every key/value
       * mapping in the underlying map and determine which satisfy the filter. When a live view is
       * <i>not</i> needed, it may be faster to copy the filtered map and use the copy.
       *
       * <p><b>Warning:</b> {@code keyPredicate} must be <i>consistent with equals</i>, as documented at
       * {@link Predicate#apply}. Do not provide a predicate such as {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      auto input_ty = mlir::dyn_cast<TensorType>(getInput().getType());
      if (!input_ty) return getDataFormat();
    
      // For f16 data type on devices with Tensor Cores support NHWC data format
      // is up to ~2x faster.
      const bool is_f16 = input_ty.getElementType().isF16();
      if (is_f16 && CanUseTensorCores(devices)) return "NHWC";
    
      // For f32/f16 data type decision depends on the filter size in spatial
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	}
    
    	// project the services in namespace ns onto the master services
    	for i := range services {
    		service := services[i]
    		// ignore services where ClusterIP is "None" or empty
    		if !v1helper.IsServiceIPSet(service) {
    			continue
    		}
    		serviceName := service.Name
    
    		// We always want to add environment variabled for master services
    		// from the default namespace, even if enableServiceLinks is false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    				opts: echo.CallOptions{
    					Port:  echo.Port{ServicePort: e.port, Protocol: protocol.HTTP},
    					Count: 1,
    					// Failed requests will go to non-existent port which hangs forever
    					// Set a low timeout to fail faster
    					Timeout: time.Millisecond * 500,
    					Address: t.Apps.External.All[0].Address(),
    					HTTP: echo.HTTP{
    						Headers: HostHeader(t.Apps.External.All[0].Config().DefaultHostHeader),
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            succeeds ":util:resolve"
    
            when:
            def outputDir = immutableOutputDir("lib1.jar", "0/lib1-green.jar")
            def workspaceDir = outputDir.parentFile
            outputDir.file("tamper-tamper.txt").text = "Making a mess"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    	waitForAttachTimeout time.Duration,
    	volumeToMount VolumeToMount,
    	actualStateOfWorld ActualStateOfWorldMounterUpdater) (volumetypes.GeneratedOperations, error) {
    
    	// Get block volume mapper plugin
    	blockVolumePlugin, err :=
    		og.volumePluginMgr.FindMapperPluginBySpec(volumeToMount.VolumeSpec)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    putServiceRegistryOnStack();
    
                    if (genericServiceType instanceof Class) {
                        // if the return type doesn't use generics, then it's faster to just rely on the type name directly
                        _LDC(getType((Class<?>) genericServiceType));
                    } else {
                        // load the static type descriptor from class constants
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	DM_DEV_STATUS                               = 0xc138fd07
    	DM_DEV_SUSPEND                              = 0xc138fd06
    	DM_DEV_WAIT                                 = 0xc138fd08
    	DM_DIR                                      = "mapper"
    	DM_GET_TARGET_VERSION                       = 0xc138fd11
    	DM_IMA_MEASUREMENT_FLAG                     = 0x80000
    	DM_INACTIVE_PRESENT_FLAG                    = 0x40
    	DM_INTERNAL_SUSPEND_FLAG                    = 0x40000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          // This assumption means we have a 1:1 correspondence between
          // tf.function <=> SavedFunction <=> SavedConcreteFunction <=> FunctionDef
          // This makes defining the ABI easier (or even well-defined at all).
          // TODO(silvasean): How to detect a function that doesn't have an
          // explicitly user-provided input signature, but happens to have been
          // traced exactly once?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top