Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for throws (1.77 sec)

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

       * @return a map mapping the result of evaluating the function {@code keyFunction} on each value
       *     in the input collection to that value
       * @throws IllegalArgumentException if {@code keyFunction} produces the same key for more than one
       *     value in the input collection
       * @throws NullPointerException if any element of {@code values} is {@code null}, or if {@code
       *     keyFunction} produces {@code null} for any value
       */
    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. cluster/gce/gci/configure-helper.sh

    function update-node-journal {
      local -r configmap_yaml="$1"
      if [[ "${ENABLE_NODE_JOURNAL:-}" != "true" ]]; then
        # Removes all lines between two patterns (throws away node-journal)
        sed -i -e "/# BEGIN_NODE_JOURNAL/,/# END_NODE_JOURNAL/d" "${configmap_yaml}"
      fi
    }
    
    # Updates parameters in yaml file for prometheus-to-sd configuration, or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        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.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[QI8, QUI8, QI16, F16, TFL_Quint8]>:$input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	req, err := NewRequest("GET", ts.URL, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	res, err := tr.RoundTrip(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	// If we do an early close, Transport just throws the connection away and
    	// doesn't reuse it. In order to trigger the bug, it has to reuse the connection
    	// so read the body
    	if _, err := io.Copy(io.Discard, res.Body); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        }
    
        void isTransformed(String from, String to) {
            def dirs = allOutputDirs(from, to)
            if (dirs.size() == 0) {
                throw new AssertionError("Could not find $from -> $to in output: $output")
            }
            if (dirs.size() > 1) {
                throw new AssertionError("Found $from -> $to more than once in output: $output")
            }
            assert output.count("into " + dirs.first()) == 1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    		{
    			// anyOf is not suppored due to the fact that to properly implement it
    			// the SchemaValidator would need to call out to CEL. This test
    			// shows that a rule that would otherwise be an error has those
    			// fields ignored (CRD validation shoulds will throw error in this case)
    			name: "anyOf rule ignored",
    			obj: map[string]interface{}{
    				"key":  "value",
    				"key2": "value",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    		klog.V(3).InfoS("Orphaned pod found, removing pod cgroups", "podUID", uid)
    		// Destroy all cgroups of pod that should not be running,
    		// by first killing all the attached processes to these cgroups.
    		// We ignore errors thrown by the method, as the housekeeping loop would
    		// again try to delete these unwanted pod cgroups
    		go pcm.Destroy(val)
    	}
    }
    
    func (kl *Kubelet) runtimeClassSupportsRecursiveReadOnlyMounts(pod *v1.Pod) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

    ons":{"code":{"language":"plaintext","showLineNumbers":false,"showMiniMap":false},"content":"The charts on this dashboard are intended to show Istio main components cost in terms of resources utilization under steady load.\n\n- **vCPU / 1k rps:** shows vCPU utilization by the main Istio components normalized by 1000 requests/second. When idle or low traffic, this chart will be blank. The curve for istio-proxy refers to the services sidecars only.\n- **vCPU:** vCPU utilization by Istio components,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    			}
    		case objabi.R_ADDR, objabi.R_PEIMAGEOFF:
    			if weak && !ldr.AttrReachable(rs) {
    				// Redirect it to runtime.unreachableMethod, which will throw if called.
    				rs = syms.unreachableMethod
    			}
    			if target.IsExternal() {
    				nExtReloc++
    
    				// set up addend for eventual relocation via outer symbol.
    				rs := rs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top