Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for circle (0.18 sec)

  1. api/README

    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    //
    // Do not assume that Deref(T)==T implies T is not a pointer:
    // consider "type T *T", for example.
    //
    // TODO(adonovan): ideally this would live in typesinternal, but that
    // creates an import cycle. Move there when we melt this package down.
    func Deref(t types.Type) types.Type {
    	if ptr, ok := CoreType(t).(*types.Pointer); ok {
    		return ptr.Elem()
    	}
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/snapshot.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Snapshot is a snapshot of cache NodeInfo and NodeTree order. The scheduler takes a
    // snapshot at the beginning of each scheduling cycle and uses it for its operations in that cycle.
    type Snapshot struct {
    	// nodeInfoMap a map of node name to a snapshot of its NodeInfo.
    	nodeInfoMap map[string]*framework.NodeInfo
    	// nodeInfoList is the list of nodes as ordered in the cache's nodeTree.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/CyclicalManagedTypeIntegrationTest.groovy

            then:
            succeeds "echo"
    
            and:
            output.contains("name: parent")
        }
    
        def "managed types can have cyclical managed type references where more than two types constitute the cycle"() {
            when:
            buildScript '''
                @Managed
                interface A {
                    String getName()
                    void setName(String name)
    
                    B getB()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/build.gradle.kts

        excludePatterns.add("org/gradle/model/internal/manage/schema/**")
        excludePatterns.add("org/gradle/model/internal/type/**")
        excludePatterns.add("org/gradle/api/internal/plugins/*")
        // cycle between org.gradle.api.internal.provider and org.gradle.util.internal
        // (api.internal.provider -> ConfigureUtil, DeferredUtil -> api.internal.provider)
        excludePatterns.add("org/gradle/util/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileParallelIntegrationTest.groovy

        def "system property java.home is not modified across compile task boundaries"() {
            def projectNames = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
            def jdks = Iterables.cycle(AvailableJavaHomes.availableJdksWithJavac.entrySet()).iterator()
    
            settingsFile << "include ${projectNames.collect { "'$it'" }.join(', ')}"
            buildFile << """
                subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. android/guava-testlib/pom.xml

          <version>4.13.2</version>
        </dependency>
        <dependency>
          <!--
          Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle.
          -->
          <groupId>com.google.truth</groupId>
          <artifactId>truth</artifactId>
          <version>${truth.version}</version>
          <scope>test</scope>
          <exclusions>
            <exclusion>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. guava-testlib/pom.xml

          <version>4.13.2</version>
        </dependency>
        <dependency>
          <!--
          Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle.
          -->
          <groupId>com.google.truth</groupId>
          <artifactId>truth</artifactId>
          <version>${truth.version}</version>
          <scope>test</scope>
          <exclusions>
            <exclusion>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. operator/pkg/util/progress/progress.go

    	mu         sync.Mutex
    	state      InstallState
    }
    
    func NewLog() *Log {
    	return &Log{
    		components: map[string]*ManifestLog{},
    		bar:        createBar(),
    	}
    }
    
    const inProgress = `{{ yellow (cycle . "-" "-" "-" " ") }} `
    
    // createStatus will return a string to report the current status.
    // ex: - Processing resources for components. Waiting for foo, bar
    func (p *Log) createStatus(maxWidth int) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultUserInputReceiver.java

         * However, the console pipeline also needs access to this instance in order to handle user input prompt requests.
         * Break this cycle for now using a non-final field.
         */
        public void attachConsole(OutputEventListener console) {
            this.console = console;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top