Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 147 for Discovered (0.25 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    		// about yet when dynamically linking.
    		d.reflectSeen = true
    	}
    
    	for {
    		// Mark all methods that could satisfy a discovered
    		// interface as reachable. We recheck old marked interfaces
    		// as new types (with new methods) may have been discovered
    		// in the last pass.
    		rem := d.markableMethods[:0]
    		for _, m := range d.markableMethods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt

    [short] skip
    [!fuzz-instrumented] skip
    
    # Test that when an interesting value is discovered (one that expands coverage),
    # the fuzzing engine minimizes it before writing it to the cache.
    #
    # The program below starts with a seed value of length 100, but more coverage
    # will be found for any value other than the seed. We should end with a value
    # in the cache of length 1 (the minimizer currently does not produce empty
    # strings). check_cache.go confirms that.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelReferenceNode.java

            super(modelRegistry, registration);
            this.parent = parent;
        }
    
        @Override
        public void setTarget(ModelNode target) {
            // Once the node has been discovered, changing the target is not allowed, as it changes the promise of the node as well
            if (getState() != State.Registered) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

        }
    
        /**
         * This test illustrates that published modules can declare capabilities, which are then discovered
         * as we visit the graph. And if no published module declares a preference, then build should fail.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. docs/sts/README.md

    2018/12/26 17:49:36 listening on http://localhost:8888/
    ```
    
    This will open the login page of keycloak, upon successful login, STS credentials along with any buckets discovered using the credentials will be printed on the screen, for example:
    
    ```
    {
      "buckets": [
        "bucket-x"
      ],
      "credentials": {
        "AccessKeyID": "6N2BALX7ELO827DXS3GK",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

            annotation     | targetType
            InputDirectory | "directory"
            InputFile      | "file"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/3792")
        def "task dependency is discovered via Buildable input files"() {
            buildFile << """
                @groovy.transform.TupleConstructor
                class BuildableArtifact implements Buildable, Iterable<File> {
                    FileCollection files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. docs/sts/web-identity.go

    			http.Error(w, err.Error(), http.StatusBadRequest)
    			return
    		}
    		creds, _ := sts.Get()
    
    		bucketNames := []string{}
    
    		for _, bucket := range buckets {
    			log.Println(fmt.Sprintf("Bucket discovered: %s", bucket.Name))
    			bucketNames = append(bucketNames, bucket.Name)
    		}
    		response := make(map[string]interface{})
    		response["credentials"] = creds
    		response["buckets"] = bucketNames
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

         * Then does the same analysis for all classes that expose this class on their ABI recursively until no more new classes are discovered.
         */
        public DependentsSet findTransitiveDependents(Collection<String> classes, Map<String, IntSet> changedConstantsByClass) {
            if (classes.isEmpty()) {
                return DependentsSet.empty();
            }
    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/compile/internal/ssa/sccp.go

    				}
    			}
    			continue
    		}
    		if len(t.uses) > 0 {
    			use := t.uses[0]
    			t.uses = t.uses[1:]
    			t.visitValue(use)
    			continue
    		}
    		break
    	}
    
    	// apply optimizations based on discovered constants
    	constCnt, rewireCnt := t.replaceConst()
    	if f.pass.debug > 0 {
    		if constCnt > 0 || rewireCnt > 0 {
    			fmt.Printf("Phase SCCP for %v : %v constants, %v dce\n", f.Name, constCnt, rewireCnt)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    By default, Gradle will fail if two components in the dependency graph provide the same capability.
    Because most modules are currently published without Gradle Module Metadata, capabilities are not always automatically discovered by Gradle.
    It is however interesting to use _rules_ to declare component capabilities in order to discover conflicts as soon as possible, during the build instead of runtime.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top