Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 511 for discovered (0.24 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. pkg/controller/garbagecollector/garbagecollector.go

    			//
    			// NOTE: It's possible that newResources will diverge from the resources
    			// discovered by restMapper during the call to Reset, since they are
    			// distinct discovery clients invalidated at different times. For example,
    			// newResources may contain resources not returned in the restMapper's
    			// discovery call if the resources appeared in-between the calls. In that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/index/suffixarray/sais2.go

    	cB := c1
    	b := bucket[cB]
    	sa[b] = int64(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j == 0 {
    			// Skip empty entry.
    			continue
    		}
    		if j < 0 {
    			// Leave discovered type-S index for caller.
    			sa[i] = int64(-j)
    			continue
    		}
    		sa[i] = 0
    
    		// Index j was on work queue, meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

                        action(outputStream ->
                            // delay obtaining contents to account for descriptor changes
                            // (for instance, due to modules discovered)
                            descriptor.writeTo(new OutputStreamWriter(outputStream))
                        )
                    );
                }
    
                return null;
            }));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21325")
        def "finalizer can have dependencies that are not reachable from first discovered finalized task and reachable from second discovered finalized task"() {
            buildFile '''
                task classes(type: BreakingTask) {
                }
    
                task jar(type: BreakingTask) {
                    dependsOn classes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

             </artifact>
          </component>
       </components>
    </verification-metadata>
    """
            and:
            output.contains("""A verification file was generated but some problems were discovered:
       - some keys couldn't be downloaded. They were automatically added as ignored keys but you should review if this is acceptable. Look for entries with the following comment: Key couldn't be downloaded from any key server
    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java

    import org.eclipse.aether.resolution.VersionRangeResult;
    
    /**
     * A model resolver to assist building of dependency POMs. This resolver gives priority to those repositories that have
     * been initially specified and repositories discovered in dependency POMs are recessively merged into the search chain.
     *
     * @see DefaultArtifactDescriptorReader
     */
    class DefaultModelResolver implements ModelResolver {
    
        private final RepositorySystemSession session;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/runtime/runtime.go

    			strings.Join(foundCRISockets, ", "))
    	}
    }
    
    // DetectCRISocket uses a list of known CRI sockets to detect one. If more than one or none is discovered, an error is returned.
    func DetectCRISocket() (string, error) {
    	return detectCRISocketImpl(isExistingSocket, defaultKnownCRISockets)
    }
    
    // SandboxImage returns the sandbox image used by the container runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top