Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for createfing (0.33 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // http://man7.org/linux/man-pages/man3/keyctl_get_keyring_ID.3.html
    func KeyctlGetKeyringID(id int, create bool) (ringid int, err error) {
    	createInt := 0
    	if create {
    		createInt = 1
    	}
    	return KeyctlInt(KEYCTL_GET_KEYRING_ID, id, createInt, 0, 0)
    }
    
    // KeyctlSetperm implements the KEYCTL_SETPERM command. The perm value is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                dependencies {
                    implementation 'org.apache.commons:commons-lang3:3.10'
                }
            """
            file("src/main/java").createDir()
            file("src/main/java/Foo.java").createFile().text = """class Foo {}"""
            enableStableConfigurationCache()
            // should not be expected
            executer.expectDocumentedDeprecationWarning(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return new Builder<>(Ordering.natural());
      }
    
      /**
       * Returns a builder that creates immutable sorted maps with an explicit comparator. If the
       * comparator has a more general type than the map's keys, such as creating a {@code
       * SortedMap<Integer, String>} with a {@code Comparator<Number>}, use the {@link Builder}
       * constructor instead.
       *
       * @throws NullPointerException if {@code comparator} is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    	if err != nil {
    		t.Fatalf("failed decoding of: %v\n\n%s", err, fixtureItemsAndType)
    	}
    	crd := obj.(*apiextensionsv1.CustomResourceDefinition)
    
    	// create CRDs
    	t.Logf("Creating CRD %s", crd.Name)
    	if _, err = fixtures.CreateNewV1CustomResourceDefinition(crd, apiExtensionClient, client); err != nil {
    		t.Fatalf("unexpected create error: %v", err)
    	}
    
    	// create CR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Sets.java

       * deterministic iteration behavior.
       *
       * <p>This method is just a small convenience, either for {@code newHashSet(}{@link Arrays#asList
       * asList}{@code (...))}, or for creating an empty set then calling {@link Collections#addAll}.
       * This method is not actually very useful and will likely be deprecated in the future.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    		//
    		// See golang.org/issue/32027.
    	} else {
    		modfetch.GoSumFile = strings.TrimSuffix(modFilePath(modRoots[0]), ".mod") + ".sum"
    	}
    	if len(modRoots) == 0 {
    		// TODO(#49228): Instead of creating a fake module with an empty modroot,
    		// make MainModules.Len() == 0 mean that we're in module mode but not inside
    		// any module.
    		mainModule := module.Version{Path: "command-line-arguments"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    API along with the `componentFilter` method to select a subset of a Configuration's artifacts:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val conf by configurations.creating
    
    dependencies {
        conf("com.thing:foo:1.0")
        conf("org.example:bar:1.0")
    }
    
    tasks.register("filterDependencies") {
        val files: FileCollection = conf.incoming.artifactView {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            given:
            def taskOutput = file("outputDir").createDir()
            def symlink = file("symlink")
            symlink.createLink(taskOutput)
    
            and:
            Task a = task("a", type: AsyncWithOutputDirectory)
            _ * a.outputDirectory >> taskOutput
            Task b = task("b", type: AsyncWithOutputFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    			// prematurely closed and we do not find any xl.meta or
    			// part.1's - in such a scenario we must return as if client
    			// disconnected. This means that erasure.Encode() CreateFile()
    			// did not do anything.
    			return ObjectInfo{}, IncompleteBody{Bucket: bucket, Object: object}
    		}
    		return ObjectInfo{}, toObjectErr(err, bucket, object)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if !exists {
    		t.Errorf("No expectations found for ReplicaSet %q", oldRSKey)
    	}
    	if rsExp.Fulfilled() {
    		t.Errorf("There should be unfulfilled expectations for creating new pods for ReplicaSet %q", oldRSKey)
    	}
    
    	if manager.queue.Len() != 0 {
    		t.Fatal("Unexpected item in the queue")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top