Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 127 for throws (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         */
        private void maybeWarnOnChangingUsage(String methodName, boolean current, boolean newValue) {
            if (isInLegacyRole()) {
                return;
            }
    
            // Error will be thrown later. Don't emit a duplicate warning.
            if (!usageCanBeMutated && (current != newValue)) {
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    		throw("bad TinySizeClass")
    	}
    
    	if heapArenaBitmapWords&(heapArenaBitmapWords-1) != 0 {
    		// heapBits expects modular arithmetic on bitmap
    		// addresses to work.
    		throw("heapArenaBitmapWords not a power of 2")
    	}
    
    	// Check physPageSize.
    	if physPageSize == 0 {
    		// The OS init code failed to fetch the physical page size.
    		throw("failed to get system page size")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    if (response.getContentException() != null) {
                        throw new FessSystemException(message, response.getContentException());
                    }
                    throw new FessSystemException(message);
                } catch (final Exception e) {
                    cause = new FessSystemException("Configsync is not available.", e);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            when:
            container.configureEach(method)
            then:
            def ex = thrown(Throwable)
            assertDoesNotAllowMethod(ex, methodUnderTest)
    
            when:
            container.withType(container.type).configureEach(method)
            then:
            ex = thrown(Throwable)
            assertDoesNotAllowMethod(ex, methodUnderTest)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	// we're still holding worldsema so a new cycle can't start.
    	sl := sweep.active.begin()
    	if !stwSwept && !sl.valid {
    		throw("failed to set sweep barrier")
    	} else if stwSwept && sl.valid {
    		throw("non-concurrent sweep failed to drain all sweep queues")
    	}
    
    	systemstack(func() {
    		// The memstats updated above must be updated with the world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            if (!gradleInvocation.implicitLauncherJvmArgs.isEmpty()) {
                throw new IllegalStateException("Implicit JVM args have not been handled.");
            }
    
            return gradleInvocation;
        }
    
        protected void validateDaemonVisibility() {
            if (isUseDaemon() && isSharedDaemons()) {
                throw new IllegalStateException("Daemon that will be visible to other tests has been requested.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	assertLockHeld(&h.lock)
    
    	switch s.state.get() {
    	case mSpanManual:
    		if s.allocCount != 0 {
    			throw("mheap.freeSpanLocked - invalid stack free")
    		}
    	case mSpanInUse:
    		if s.isUserArenaChunk {
    			throw("mheap.freeSpanLocked - invalid free of user arena chunk")
    		}
    		if s.allocCount != 0 || s.sweepgen != h.sweepgen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/runtime/map.go

    		throw("elem size wrong")
    	}
    	if t.Key.Align_ > abi.MapBucketCount {
    		throw("key align too big")
    	}
    	if t.Elem.Align_ > abi.MapBucketCount {
    		throw("elem align too big")
    	}
    	if t.Key.Size_%uintptr(t.Key.Align_) != 0 {
    		throw("key size not a multiple of key align")
    	}
    	if t.Elem.Size_%uintptr(t.Elem.Align_) != 0 {
    		throw("elem size not a multiple of elem align")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    		// of a physical page, but the likely effect of that is that it released
    		// the whole physical page, some of which may have still been in-use.
    		// This could lead to memory corruption. Throw.
    		throw("released less than one physical page of memory")
    	}
    	return
    }
    
    // Background scavenger.
    //
    // The background scavenger maintains the RSS of the application below
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            } else if (event instanceof InternalProgressEvent) {
                broadcastInternalProgressEvent((InternalProgressEvent) event);
            } else {
                throw new IllegalArgumentException("Unexpected event type: " + event);
            }
        }
    
        private void broadcastProgressEvent(ProgressEvent event) {
            if (event instanceof TestProgressEvent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top