Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 127 for throws (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Gradle now uses the `URI` class to parse and decode URLs, but with a fallback to the legacy behavior in the event of an error.
    
    Starting in Gradle 9.0, the fallback will be removed, and an error will be thrown instead.
    
    To fix a deprecation warning, invalid URLs that require the legacy behavior should be re-encoded to be valid URLs, such as in the following examples:
    
    .Legacy URL Conversions
    |===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            given:
            pomFile << """
    <project>
        <modelVersion
    </project>
    """
    
            when:
            parseMetaData()
    
            then:
            def e = thrown(MetaDataParseException)
            e.message == "Could not parse POM ${pomFile}"
            e.cause.message.contains('"modelVersion"')
        }
    
    
        def "pom with no dependencies "() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	 * from needing to come back later to pick up more
    	 * objects.  it breaks the usual C archive model, but
    	 * this is Go, not C.  the common case in Go is that
    	 * we need to load all the objects, and then we throw away
    	 * the individual symbols that are unused.
    	 *
    	 * loading every object will also make it possible to
    	 * load foreign objects not referenced by __.PKGDEF.
    	 */
    	var arhdr ArHdr
    	off := f.Offset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default Class<? extends LaJob> getSchedulerJobClassAsClass() {
            try {
                return (Class<? extends LaJob>) Class.forName(getSchedulerJobClass());
            } catch (final ClassNotFoundException e) {
                throw new ClassNotFoundRuntimeException(e);
            }
        }
    
        String getSchedulerConcurrentExecMode();
    
        default JobConcurrentExec getSchedulerConcurrentExecModeAsEnum() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			_, _, podExistErr := asw.PodExistsInVolume(podName, volumeName, newSize, "" /* SELinuxLabel */)
    			if tc.expansionFailed {
    				if cache.IsFSResizeRequiredError(podExistErr) {
    					t.Fatalf("volume %s should not throw fsResizeRequired error: %v", volumeName, podExistErr)
    				}
    			} else {
    				if !cache.IsFSResizeRequiredError(podExistErr) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertInvalid("http://\uDBFF\uDFFF", "Invalid URL host: \"\uDBFF\uDFFF\"")
      }
    
      @Test
      fun hostnameUri() {
        // Host names are special:
        //
        //  * Several characters are forbidden and must throw exceptions if used.
        //  * They don't use percent escaping at all.
        //  * They use punycode for internationalization.
        //  * URI is much more strict than HttpUrl or URL on what's accepted.
        //
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    	if len(b.Preds) != 2 {
    		return
    	}
    
    	for _, i1 := range b.Values {
    		if i1.Op != OpPhi {
    			continue
    		}
    
    		// Check for conditions 1 and 2. This is easy to do
    		// and will throw out most phis.
    		min, i2 := i1.Args[0], i1.Args[1]
    		if i1q, delta := isConstDelta(i2); i1q != i1 || delta != 1 {
    			continue
    		}
    
    		// Try to prove condition 3. We can't just query the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    		// then we can omit them from the restore input. However, we have to still
    		// figure out how many chains we _would_ have written, to make the metrics
    		// come out right, so we just compute them and throw them away.
    		if tryPartialSync && !serviceUpdateResult.UpdatedServices.Has(svcName.NamespacedName) && !endpointUpdateResult.UpdatedServices.Has(svcName.NamespacedName) {
    			natChains = skippedNatChains
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		wg.Wait()
    		close(workersExited)
    	}()
    
    	hasLimit := listOptions.Limit > 0
    	if listOptions.Limit == 0 {
    		listOptions.Limit = deleteCollectionPageSize
    	}
    
    	// Paginate the list request and throw all items into workers.
    	listObj, err := func() (runtime.Object, error) {
    		defer close(toProcess)
    
    		processedItems := 0
    		var originalList runtime.Object
    		for {
    			select {
    			case <-ctx.Done():
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	tooSlow(t, "walks all of GOROOT/src")
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.run("list", "std")
    	tg.grepStdoutNot("cmd/", "go list std shows commands")
    }
    
    func TestGoListCmdOnlyShowsCommands(t *testing.T) {
    	skipIfGccgo(t, "gccgo does not have GOROOT")
    	tooSlow(t, "walks all of GOROOT/src/cmd")
    
    	tg := testgo(t)
    	defer tg.cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top