Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,252 for Capget (0.13 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/actor/internal/DefaultActorFactorySpec.groovy

            when:
            def actor1 = factory.createActor(target)
            def actor2 = factory.createActor(target)
    
            then:
            actor2.is(actor1)
        }
    
        def returnsTargetObjectIfTargetObjectIsAnActor() {
            when:
            def actor1 = factory.createActor(target)
            def actor2 = factory.createActor(actor1)
    
            then:
            actor2.is(actor1)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. src/internal/goos/gengoos.go

    			gooses = append(gooses, goos)
    		}
    	}
    
    	for _, target := range gooses {
    		if target == "nacl" {
    			continue
    		}
    		var tags []string
    		if target == "linux" {
    			tags = append(tags, "!android") // must explicitly exclude android for linux
    		}
    		if target == "solaris" {
    			tags = append(tags, "!illumos") // must explicitly exclude illumos for solaris
    		}
    		if target == "darwin" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 15 21:31:23 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. docs/pt/docs/help-fastapi.md

    Você pode:
    
    * <a href="https://github.com/tiangolo" class="external-link" target="_blank">Me siga no **GitHub**</a>.
        * Ver também outros projetos Open Source criados por mim que podem te ajudar.
        * Me seguir para saber quando um novo projeto Open Source for criado.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeDependentBinariesResolutionStrategy.java

            if (!(target instanceof NativeBinarySpecInternal)) {
                return null;
            }
            return resolveDependentBinaries((NativeBinarySpecInternal) target);
        }
    
        private List<DependentBinariesResolvedResult> resolveDependentBinaries(NativeBinarySpecInternal target) {
            State state = getState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            given:
            def target = tmpDir.file('versionDir')
            target.file('repo').mkdirs()
            target.file('repo/child.txt').createNewFile()
    
            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            thrown GradleException
    
            when:
            target.file('repo/.git').mkdir()
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Bytes.java

       * i, i + target.length)} contains exactly the same elements as {@code target}.
       *
       * @param array the array to search for the sequence {@code target}
       * @param target the array to search for as a sub-sequence of {@code array}
       */
      public static int indexOf(byte[] array, byte[] target) {
        checkNotNull(array, "array");
        checkNotNull(target, "target");
        if (target.length == 0) {
          return 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. internal/event/target/elasticsearch.go

    // Name - returns the Name of the target.
    func (target *ElasticsearchTarget) Name() string {
    	return target.ID().String()
    }
    
    // Store returns any underlying store if set.
    func (target *ElasticsearchTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *ElasticsearchTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGeneratorTest.groovy

            when:
            processor.testClassFinished(failure)
    
            then:
            1 * target.failure(2, failure)
            1 * target.failure(3, failure)
            1 * target.completed(2, !null)
            1 * target.completed(3, !null)
            1 * target.completed(1, !null)
            0 * target._
        }
    
        def "synthesises a broken test when test class fails and some tests have been completed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/initialization/LayoutCommandLineConverterTest.groovy

        }
    
        def "converts relatively to the target dir"() {
            given:
            def root = temp.createDir('root')
            def target = new BuildLayoutParameters().setCurrentDir(root)
    
            when:
            converter.convert(['-p', 'projectDir', '-g', 'gradleDir'], target)
    
            then:
            target.gradleUserHomeDir == temp.file("root/gradleDir")
            target.projectDir == temp.file("root/projectDir")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top