Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 623 for isSelect (0.12 sec)

  1. .teamcity/README.md

    # CI Pipeline Configuration
    
    ## Open & import the project
    
    In your IDEA, `File` - `Open`, select `.teamcity/pom.xml`, `import as project`, and you'll have a Maven project.
    
    ## Project structure
    
    Mostly a standard Maven project structure. The entry point `settings.kts` defines the TeamCity project.
    
    There are 3 subprojects in the TeamCity project hierarchy: `Check` for Gradle builds, `Promotion` for releasing Gradle versions, `Util` for miscellaneous utilities.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

            }
        }
    }
    // end::cpp-compiler-options-per-variants[]
    
    // tag::cpp-select-target-machines[]
    application {
        targetMachines = [
            machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

                    // If there is a single constructor, and that constructor is public or package private we select it.
                    return constructor;
                }
                if (constructor.getAnnotation(Inject.class) != null) {
                    // Otherwise, if there is a single constructor that is annotated with `@Inject`, we select it (short-circuit).
                    return constructor;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultResolvedConfiguration.java

            return configuration;
        }
    
        @Override
        public Set<File> getFiles() throws ResolveException {
            ResolvedFilesCollectingVisitor visitor = new ResolvedFilesCollectingVisitor();
            visitedArtifacts.select(configuration.getImplicitSelectionSpec()).visitArtifacts(visitor, false);
            resolutionHost.rethrowFailure("files", visitor.getFailures());
            return visitor.getFiles();
        }
    
        @Override
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/LenientConfigurationInternal.java

        /**
         * An artifact selection spec that can be applied to a visited artifact set to select
         * the artifacts that a configuration's intrinsic file collection would select.
         */
        ArtifactSelectionSpec getImplicitSelectionSpec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

     * <ul>
     *     <li>Select a variant of the component instance. The variant selected for artifact resolution may be different to that used for graph resolution,
     *     for example when using an {@link org.gradle.api.artifacts.ArtifactView} to select different variants.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/package-info.java

     * main branches of the {@link org.gradle.internal.component.resolution.failure.type.ResolutionFailure ResolutionFailure}
     * hierarchy, which represent a failure to select a variant of a component, and a failure to select
     * a configuration by name.
     *
     * Artifact variant selection failures are not represented by a specific exception type, as they are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

            }
        }
    }
    // end::cpp-compiler-options-per-variants[]
    
    // tag::cpp-select-target-machines[]
    application {
        targetMachines = listOf(machines.windows.x86, machines.windows.x86_64, machines.macOS.x86_64, machines.linux.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    		s.mu.Unlock()
    		<-done
    		return ctx.Err()
    	}
    
    	ready := make(chan struct{})
    	w := waiter{n: n, ready: ready}
    	elem := s.waiters.PushBack(w)
    	s.mu.Unlock()
    
    	select {
    	case <-done:
    		s.mu.Lock()
    		select {
    		case <-ready:
    			// Acquired the semaphore after we were canceled.
    			// Pretend we didn't and put the tokens back.
    			s.cur -= n
    			s.notifyWaiters()
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pkg/queue/delay_test.go

    		mu.Lock()
    		defer mu.Unlock()
    		t1 = time.Now()
    		return nil
    	}, 100*time.Millisecond)
    	dq.Push(func() error {
    		mu.Lock()
    		defer mu.Unlock()
    		t0 = time.Now()
    		return nil
    	})
    
    	select {
    	case <-time.After(500 * time.Millisecond):
    	case <-done:
    	}
    
    	mu.Lock()
    	if !(t2.After(t1) && t1.After(t0)) {
    		t.Errorf("expected jobs to be run in order based on delays")
    	}
    	mu.Unlock()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top