Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 524 for unprocessed (0.13 sec)

  1. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    ====
    
    
    ## Receiving a problem report
    
    Problems are emitted as Tooling API progress events. They can be processed by registering a `ProgressListener`:
    
    ====
    include::sample[dir="groovy",files="sample-ide/src/main/java/org/gradle/sample/SampleIde.java[tags=problems-tapi-event]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/bools/bools.go

    	nodeFilter := []ast.Node{
    		(*ast.BinaryExpr)(nil),
    	}
    	seen := make(map[*ast.BinaryExpr]bool)
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		e := n.(*ast.BinaryExpr)
    		if seen[e] {
    			// Already processed as a subexpression of an earlier node.
    			return
    		}
    
    		var op boolOp
    		switch e.Op {
    		case token.LOR:
    			op = or
    		case token.LAND:
    			op = and
    		default:
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelPathTranslator.java

     *
     */
    public interface ModelPathTranslator {
    
        /**
         * Resolves the well-known paths of the specified model against the given base directory. Paths within plugin
         * configuration are not processed.
         *
         * @param model The model whose paths should be resolved, may be {@code null}.
         * @param basedir The base directory to resolve relative paths against, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/MavenRepositoryLayout.java

     *     <li>Ivy: $baseUri/{@value IvyArtifactRepository#MAVEN_IVY_PATTERN}</li>
     * </ul>
     *
     * Following the Maven convention, the 'organisation' value is further processed by replacing '.' with '/'.
     * Note that the resolver will follow the layout only, but will not use .pom files for meta data. Ivy metadata files are required/published.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. pkg/proxy/util/nfacct/nfacct_linux.go

    // false only for testing purposes. If in strict mode and any of the relevant attributes (name, packets, or bytes)
    // have not been processed, an error is returned indicating a failure to decode the byte stream.
    //
    // Parse the netlink message as per the documentation outlined in:
    // https://docs.kernel.org/userspace-api/netlink/intro.html
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

            It does not affect the behaviour of proxy.golang.org or the go command.
            Instead we recommend using the retract directive which will be processed by all 3 of the above.
    
            If you have deleted your repo, please recreate it and publish a retraction.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java

     */
    package org.apache.maven.model.building;
    
    import java.util.function.Supplier;
    
    import org.apache.maven.building.Source;
    
    /**
     * Caches auxiliary data used during model building like already processed raw/effective models. The data in the cache
     * is meant for exclusive consumption by the model builder and is opaque to the cache implementation. The cache key is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

        /**
         * Returns the types that need to be reprocessed based on which classes are due to be recompiled. This includes:
         *
         * - types which are annotated with aggregating annotations, as aggregating processors need to see them regardless of what has changed
         * - the originating types of generated classes that need to be recompiled, since they wouldn't exist if the originating type is not reprocessed
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/auth/netrc.go

    		for ; i < len(f)-1; i += 2 {
    			// Reset at each "machine" token.
    			// “The auto-login process searches the .netrc file for a machine token
    			// that matches […]. Once a match is made, the subsequent .netrc tokens
    			// are processed, stopping when the end of file is reached or another
    			// machine or a default token is encountered.”
    			switch f[i] {
    			case "machine":
    				l = netrcLine{machine: f[i+1]}
    			case "default":
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1/types.go

    	// DisruptedPods contains information about pods whose eviction was
    	// processed by the API server eviction subresource handler but has not
    	// yet been observed by the PodDisruptionBudget controller.
    	// A pod will be in this map from the time when the API server processed the
    	// eviction request to the time when the pod is seen by PDB controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top