Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Differences (0.19 sec)

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

        Map<K, V> onBoth = newLinkedHashMap();
        Map<K, MapDifference.ValueDifference<V>> differences = newLinkedHashMap();
        doDifference(left, right, valueEquivalence, onlyOnLeft, onlyOnRight, onBoth, differences);
        return new MapDifferenceImpl<>(onlyOnLeft, onlyOnRight, onBoth, differences);
      }
    
      /**
       * Computes the difference between two sorted maps, using the comparator of the left map, or
    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

        Map<K, V> onBoth = newLinkedHashMap();
        Map<K, MapDifference.ValueDifference<V>> differences = newLinkedHashMap();
        doDifference(left, right, valueEquivalence, onlyOnLeft, onlyOnRight, onBoth, differences);
        return new MapDifferenceImpl<>(onlyOnLeft, onlyOnRight, onBoth, differences);
      }
    
      /**
       * Computes the difference between two sorted maps, using the comparator of the left map, or
    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. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		}
    		outMap := map[string]interface{}{}
    		if err := json.Unmarshal(outBytes, &outMap); err != nil {
    			t.Fatalf("failed to json.Unmarshal(out): %v", err)
    		}
    
    		// Patch the maps to handle any expected differences before we compare
    		// - none for now.
    
    		// Compare the results.
    		inBytes, err = json.Marshal(inMap)
    		if err != nil {
    			t.Fatalf("failed to json.Marshal(in): %v", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. pkg/registry/batch/job/strategy_test.go

    			ctx := genericapirequest.NewDefaultContext()
    
    			Strategy.PrepareForUpdate(ctx, &tc.updatedJob, &tc.job)
    
    			if diff := cmp.Diff(tc.wantJob, tc.updatedJob); diff != "" {
    				t.Errorf("Job update differences (-want,+got):\n%s", diff)
    			}
    		})
    	}
    }
    
    // TestJobStrategy_PrepareForCreate tests various scenarios for PrepareForCreate
    func TestJobStrategy_PrepareForCreate(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        activations. It is a custom op in TFLite.
        If log_if_failed is true, the NumericVerify op calculates statistics on
        differences between float and quantized activations, output
        logs, set differences to the output tensors, and throws an error if errors
        above tolerance exist. If log_if_failed = false, then it doesn't care about
        errors.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Circle made by the Confine of red and orange be 9A, and that of the Circle made by the Confine of blue and indigo be 8A as above; their difference 9A-8A will be to the difference of the Diameters of the Circles made by the outmost red, and by the Confine of red and orange, as 1/18 + 1/12 + 1/12 + 2/27 to 1/9, that is as 8/27 to 1/9, or 8 to 3, and to the difference of the Circles made by the outmost violet, and by the Confine of blue and indigo, as 1/18 + 1/12 + 1/12 + 2/27 to 1/27 + 1/18, that is,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    		"Spec.Volumes[*].VolumeSource.CSI.NodePublishSecretRef",
    	)
    	secretPaths := collectResourcePaths(t, "secret", nil, "", reflect.TypeOf(&api.Pod{}))
    	secretPaths = secretPaths.Difference(excludedSecretPaths)
    	if missingPaths := expectedSecretPaths.Difference(secretPaths); len(missingPaths) > 0 {
    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        graphdef = loader.get_meta_graph_def_from_tags(tags).graph_def
        self.assertTrue(self._contains_op(graphdef, 'XlaDotV2'))
    
        new_outputs = converted_model.signatures[signature_key](**model_inputs)
    
        # The difference between TF and XLA path is expected to be small (smaller
        # or equal to 1 in the quantized domain).
        self.assertAllClose(new_outputs, expected_outputs, atol=1e-1)
    
      @parameterized.parameters(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * may also refer to servers and workgroups. If the resource is a file or
     * directory the methods of <code>SmbFile</code> follow the behavior of
     * the well known {@link java.io.File} class. One fundamental difference
     * is the usage of a URL scheme [1] to specify the target file or
     * directory. SmbFile URLs have the following syntax:
     *
     * <blockquote><pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    io-ingress` and `manifests/charts/gateways/istio-egress`. These are replaced by this chart. While not required, it is recommended all new users use this chart, and existing users migrate when possible. This chart has the following benefits and differences: * Designed with Helm best practices in mind (standardized values options, values schema, values are not all nested under `gateways.istio-ingressgateway.*`, release name and namespace taken into account, etc). * Utilizes Gateway injection, simplifying...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top