Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 574 for Unparsed (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

                    option.hasArgument(optionDescriptor.getArgumentType());
                }
                taskOptions.addMutualExclusions(parser);
    
                ParsedCommandLine parsed;
                try {
                    parsed = parser.parse(arguments);
                } catch (CommandLineArgumentException e) {
                    //we expect that all options must be applicable for each task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

                    folder("sourceDistribution/src-foo"),
                    folder("sourceDistribution/src-bar")
                )
            )
        }
    
        @Test
        fun `when init script is parsed, buildSrc sources are not available`() {
            withFolders {
                "project" {
                    "buildSrc/src/main" {
                        +"foo"
                        +"bar"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionParser.java

    public interface VersionParser extends Service {
    
        /**
         * Parses the specified version string, for example "1.0".
         *
         * @param version the version string to parse, must not be {@code null}
         * @return the parsed version, never {@code null}
         * @throws VersionParserException if the string violates the syntax rules of this scheme
         * @see org.apache.maven.api.Session#parseVersion(String)
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/extauthz.go

    				parsed, err = buildExtAuthzGRPC(push, p.EnvoyExtAuthzGrpc)
    			}
    		default:
    			continue
    		}
    		if err != nil {
    			errs = multierror.Append(errs, multierror.Prefix(err, fmt.Sprintf("failed to parse extension provider %q:", config.Name)))
    		}
    		if parsed == nil {
    			parsed = &builtExtAuthz{}
    		}
    		parsed.err = errs
    		resolved[config.Name] = parsed
    	}
    
    	if authzLog.DebugEnabled() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pkg/credentialprovider/keyring.go

    		// See ResolveAuthConfig in docker/registry/auth.go.
    		effectivePath := parsed.Path
    		if strings.HasPrefix(effectivePath, "/v2/") || strings.HasPrefix(effectivePath, "/v1/") {
    			effectivePath = effectivePath[3:]
    		}
    		var key string
    		if (len(effectivePath) > 0) && (effectivePath != "/") {
    			key = parsed.Host + effectivePath
    		} else {
    			key = parsed.Host
    		}
    		dk.creds[key] = append(dk.creds[key], creds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/tags.go

    // MustParse is like Parse, but panics if the given BCP 47 tag cannot be parsed.
    // It simplifies safe initialization of Tag values.
    func MustParse(s string) Tag {
    	t, err := Parse(s)
    	if err != nil {
    		panic(err)
    	}
    	return t
    }
    
    // MustParse is like Parse, but panics if the given BCP 47 tag cannot be parsed.
    // It simplifies safe initialization of Tag values.
    func (c CanonType) MustParse(s string) Tag {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/clusters.go

    	statuses := make(map[string][]cluster.DebugInfo, len(input))
    	for istiodKey, bytes := range input {
    		var parsed []cluster.DebugInfo
    		if err := json.Unmarshal(bytes, &parsed); err != nil {
    			return nil, err
    		}
    		statuses[istiodKey] = parsed
    	}
    	return statuses, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/init_mlir.cc

    The command line parsing is split between the two flag parsing libraries used by
    TensorFlow and LLVM:
      * Flags before the first '--' are parsed by tensorflow::InitMain while those
        post are parsed by LLVM's command line parser.
      * If there is no separator, then no flags are parsed by InitMain and only
        LLVM command line parser used.e
    The above help options reported are for LLVM's parser, run with `--help --` for
    TensorFlow's help.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 10:03:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/trace/jsontrace_test.go

    	if err != nil {
    		t.Fatalf("discovering tests: %v", err)
    	}
    	for _, testPath := range testPaths {
    		t.Run(filepath.Base(testPath), func(t *testing.T) {
    			parsed := getTestTrace(t, testPath)
    			data := recordJSONTraceHandlerResponse(t, parsed)
    			// TODO(mknyszek): Check that there's one at most goroutine per proc at any given time.
    			checkExecutionTimes(t, data)
    			checkPlausibleHeapMetrics(t, data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

         *
         * @param source the source to parse, never {@code null}
         * @param options possible parsing options, may be {@code null}
         * @return the parsed {@link Model}, never {@code null}
         * @throws ModelParserException if the model cannot be parsed
         */
        @Nonnull
        Model parse(@Nonnull Source source, @Nullable Map<String, ?> options) throws ModelParserException;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top