Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for Parses (0.13 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

        }
    
        @Override
        public void configureCommandLineParser(CommandLineParser parser) {
            buildEnvironmentConfigurationConverter.configure(parser);
        }
    
        @Override
        public Action<? super ExecutionListener> createAction(CommandLineParser parser, ParsedCommandLine commandLine) {
            Parameters parameters = buildEnvironmentConfigurationConverter.convertParameters(commandLine, null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		return nil
    	}
    	if l >= 2 && value[0] == '"' && value[l-1] == '"' {
    		value = value[1 : l-1]
    	}
    
    	parsed, err := ParseQuantity(strings.TrimSpace(string(value)))
    	if err != nil {
    		return err
    	}
    
    	// This copy is safe because parsed will not be referred to again.
    	*q = parsed
    	return nil
    }
    
    func (q *Quantity) UnmarshalCBOR(value []byte) error {
    	var s *string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

                String actual = decoder.readNullableString();
                int numOfCauses = decoder.readSmallInt();
                List<TestFailure> causes = new ArrayList<TestFailure>(numOfCauses);
                for (int i = 0; i < numOfCauses; i++) {
                    causes.add(read(decoder));
                }
                boolean isFileComparisonFailure = decoder.readBoolean();
    
                int expectedContentSize = decoder.readInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            formatter.format(testDescriptor, [new RuntimeException("oops"), new Exception("ouch")]) == """\
        java.lang.RuntimeException: oops
    
        java.lang.Exception: ouch
    """
        }
    
        def "optionally shows causes"() {
            testLogging.getShowCauses() >> true
            def cause = new RuntimeException("oops")
            def exception = new Exception("ouch", cause)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                failDueToProblems -> {
                    ConfigurationCacheProblemsException(summary.causes, summaryText)
                }
    
                hasTooManyProblems -> {
                    TooManyConfigurationCacheProblemsException(summary.causes, summaryText)
                }
    
                else -> null
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe.go

    func GetTrustDomainFromURISAN(uriSan string) (string, error) {
    	parsed, err := ParseIdentity(uriSan)
    	if err != nil {
    		return "", fmt.Errorf("failed to parse URI SAN %s. Error: %v", uriSan, err)
    	}
    	return parsed.TrustDomain, nil
    }
    
    // RetrieveSpiffeBundleRootCerts retrieves the trusted CA certificates from a list of SPIFFE bundle endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/go/types/generate_test.go

    	for _, filename := range files {
    		generate(t, filename, write)
    	}
    }
    
    func generate(t *testing.T, filename string, write bool) {
    	// parse src (cmd/compile/internal/types2)
    	srcFilename := filepath.FromSlash(runtime.GOROOT() + srcDir + filename)
    	file, err := parser.ParseFile(fset, srcFilename, nil, parser.ParseComments)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// fix package name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. src/crypto/rsa/pss.go

    		em = emNew
    	}
    
    	return decrypt(priv, em, withCheck)
    }
    
    const (
    	// PSSSaltLengthAuto causes the salt in a PSS signature to be as large
    	// as possible when signing, and to be auto-detected when verifying.
    	PSSSaltLengthAuto = 0
    	// PSSSaltLengthEqualsHash causes the salt length to equal the length
    	// of the hash used in the signature.
    	PSSSaltLengthEqualsHash = -1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/net/net.go

    		}
    		go handleConnection(conn)
    	}
    
    # Name Resolution
    
    The method for resolving domain names, whether indirectly with functions like Dial
    or directly with functions like [LookupHost] and [LookupAddr], varies by operating system.
    
    On Unix systems, the resolver has two options for resolving names.
    It can use a pure Go resolver that sends DNS requests directly to the servers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/cmd/doc/main.go

    //
    // For commands, unless the -cmd flag is present "go doc command"
    // shows only the package-level docs for the package.
    //
    // The -src flag causes doc to print the full source code for the symbol, such
    // as the body of a struct, function or method.
    //
    // The -all flag causes doc to print all documentation for the package and
    // all its visible symbols. The argument must identify a package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top