Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for throws (0.24 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

        /** Returns the value. Does not block or throw exceptions. */
        @CheckForNull
        V get();
    
        /**
         * Waits for a value that may still be loading. Unlike get(), this method can block (in the case
         * of FutureValueReference).
         *
         * @throws ExecutionException if the loading thread throws an exception
         * @throws ExecutionError if the loading thread throws an error
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

          throw new UnsupportedOperationException();
        }
    
        @Override
        public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
          throw new UnsupportedOperationException();
        }
    
        @Override
        @CheckForNull
        public V putIfAbsent(K key, V value) {
          throw new UnsupportedOperationException();
        }
    
    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. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    formatter.append(" is private.");
                    throw new ClassGenerationException(formatter.toString());
                }
                if (Modifier.isFinal(modifiers)) {
                    TreeFormatter formatter = new TreeFormatter();
                    formatter.node(type);
                    formatter.append(" is final.");
                    throw new ClassGenerationException(formatter.toString());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                abstract class BrokenTransform implements TransformAction<TransformParameters.None> {
                    BrokenTransform() {
                        throw new RuntimeException("broken")
                    }
                    void transform(TransformOutputs outputs) {
                        throw new IllegalArgumentException("broken")
                    }
                }
                ${configurationAndTransform('BrokenTransform')}
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            .sslSocketFactory(handshakeCertificates.sslSocketFactory())
        }
      }
    
      /** Confirm that runtime exceptions thrown inside of OkHttp propagate to the caller.  */
      @Test
      fun unexpectedExceptionSync() {
        client =
          client.newBuilder()
            .dns { hostname: String? -> throw RuntimeException("boom!") }
            .build()
        server.enqueue(MockResponse())
        assertFailsWith<RuntimeException> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/proc.go

    	if iscgo {
    		if _cgo_pthread_key_created == nil {
    			throw("_cgo_pthread_key_created missing")
    		}
    
    		if _cgo_thread_start == nil {
    			throw("_cgo_thread_start missing")
    		}
    		if GOOS != "windows" {
    			if _cgo_setenv == nil {
    				throw("_cgo_setenv missing")
    			}
    			if _cgo_unsetenv == nil {
    				throw("_cgo_unsetenv missing")
    			}
    		}
    		if _cgo_notify_runtime_init_done == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top