Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for throws (0.13 sec)

  1. guava/src/com/google/common/reflect/TypeToken.java

          return FluentIterable.from(collectedTypes).filter(Class::isInterface).toSet();
        }
    
        @Override
        public TypeSet classes() {
          throw new UnsupportedOperationException("interfaces().classes() not supported.");
        }
    
        private Object readResolve() {
          return getTypes().interfaces();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

          return FluentIterable.from(collectedTypes).filter(Class::isInterface).toSet();
        }
    
        @Override
        public TypeSet classes() {
          throw new UnsupportedOperationException("interfaces().classes() not supported.");
        }
    
        private Object readResolve() {
          return getTypes().interfaces();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

        }
    
        private static URI uriFromString(String uriAsString) {
            try {
                return new URI(uriAsString);
            } catch (URISyntaxException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        /**
         * Adds a plugin to be applied
         *
         * @param comment A description of why the plugin is required
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/EventListenerTest.kt

              sink.flush()
              Thread.sleep(100)
              i += chunk.size
            }
          } catch (e: IOException) {
            ioe = e
          } catch (e: InterruptedException) {
            throw RuntimeException(e)
          }
        }
      }
    
      @Test
      fun requestBodyMultipleFailuresReportedOnlyOnce() {
        val requestBody: RequestBody =
          object : RequestBody() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    	if b.nstk > maxProfStackDepth {
    		// prove that slicing works; otherwise a failure requires a P
    		throw("bad profile stack count")
    	}
    	return stk[:b.nstk:b.nstk]
    }
    
    // mp returns the memRecord associated with the memProfile bucket b.
    func (b *bucket) mp() *memRecord {
    	if b.typ != memProfile {
    		throw("bad use of bucket.mp")
    	}
    	data := add(unsafe.Pointer(b), unsafe.Sizeof(*b)+b.nstk*unsafe.Sizeof(uintptr(0)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            buildFile << """
                class BrokenSerializable implements java.io.Serializable {
                    private Object writeReplace() {
                        throw new RuntimeException("BOOM")
                    }
                }
    
                class BrokenTaskType extends DefaultTask {
                    final prop = new BrokenSerializable()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                    void started(BuildOperationDescriptor buildOperation, OperationStartEvent startEvent) { throw new RuntimeException() }
                    void progress(OperationIdentifier operationIdentifier, OperationProgressEvent progressEvent) { throw new RuntimeException() }
                    void finished(BuildOperationDescriptor buildOperation, OperationFinishEvent finishEvent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                abstract class CountingService implements BuildService<Params> {
                    CountingService() {
                        throw new IOException("broken") // use a checked exception
                    }
    
                    void increment() {
                        throw new IOException("broken") // use a checked exception
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    // should be run. This must only be called when gcBlackenEnabled != 0.
    func (c *gcControllerState) findRunnableGCWorker(pp *p, now int64) (*g, int64) {
    	if gcBlackenEnabled == 0 {
    		throw("gcControllerState.findRunnable: blackening not enabled")
    	}
    
    	// Since we have the current time, check if the GC CPU limiter
    	// hasn't had an update in a while. This check is necessary in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      If (-Not $nodes_list){
          Throw ("Node: '$(hostname)' failed to connect to API server")
    
      }ElseIf (-Not $nodes_list.contains((hostname))) {
          Throw ("Node: '$(hostname)' failed to join the cluster; NODES: '`n $($nodes_list)'")
    
      }ELseIf (-Not $host_status.contains("Ready")) {
          Throw ("Node: '$(hostname)' is not in Ready state")
      }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top