Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Unreserve (4.82 sec)

  1. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/DefaultResolvableArtifactCodec.kt

            writeFile(value.file)
            IvyArtifactNameSerializer.INSTANCE.write(this, value.artifactName)
            // TODO - preserve the artifact id implementation instead of unpacking the component id
            componentIdSerializer.write(this, value.id.componentIdentifier)
            // TODO - preserve the artifact's owner id (or get rid of it as it's not used for transforms)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue67547.go

    	var p A
    	_ = P2(p) // conversion must be valid
    }
    
    func _[P1 S1, P2 S2]() {
    	var p P1
    	type A = P2
    	_ = A(p) // conversion must be valid
    }
    
    func _[P int | string]() {
    	var p P
    	type A = int
    	// preserve target type name A in error messages when using Alias types
    	// (test are run with and without Alias types enabled, so we need to
    	// keep both A and int in the error message)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    	'+':  true, // sub-delims
    	',':  true, // sub-delims
    	'-':  true, // unreserved
    	'.':  true, // unreserved
    	':':  true, // IPv6address + Host expression's optional port
    	';':  true, // sub-delims
    	'=':  true, // sub-delims
    	'[':  true,
    	'\'': true, // sub-delims
    	']':  true,
    	'_':  true, // unreserved
    	'~':  true, // unreserved
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    			setupFiles: []string{
    				"pki/ca.pem",
    				kubeadmconstants.KubeletKubeConfigFileName,
    			},
    			verifyExists: []string{
    				"pki",
    			},
    			verifyNotExists: []string{
    				"manifests",
    			},
    		},
    		"preserve unrelated file foo": {
    			setupDirs: []string{
    				"manifests",
    				"pki",
    			},
    			setupFiles: []string{
    				"manifests/etcd.yaml",
    				"manifests/kube-apiserver.yaml",
    				"pki/ca.pem",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// It is optional only if x-kubernetes-preserve-unknown-fields
    	// or x-kubernetes-int-or-string is true.
    	Type     string
    	Title    string
    	Default  JSON
    	Nullable bool
    }
    
    // +k8s:deepcopy-gen=true
    
    // Extensions contains the Kubernetes OpenAPI v3 vendor extensions.
    type Extensions struct {
    	// x-kubernetes-preserve-unknown-fields stops the API server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

    //        outputContains("project name = b")
    
            where:
            functionType | modifier
            "regular"    | ""
            "static"     | "static "
        }
    
        def 'lifecycle actions preserve user code application context for scripts'() {
            given:
            settingsFile """
                gradle.lifecycle.beforeProject {
                    println("before:" + $currentApplication)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    			cel.DefaultUTCTimeZone(true),
    
    			library.URLs(),
    			library.Regex(),
    			library.Lists(),
    
    			// cel-go v0.17.7 change the cost of has() from 0 to 1, but also provided the CostEstimatorOptions option to preserve the old behavior, so we enabled it at the same time we bumped our cel version to v0.17.7.
    			// Since it is a regression fix, we apply it uniformly to all code use v0.17.7.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/HashSetCodec.kt

    import org.gradle.internal.serialize.graph.logPropertyProblem
    import org.gradle.internal.serialize.graph.writeCollection
    
    
    /**
     * Decodes HashSet instances as LinkedHashSet to preserve original iteration order.
     */
    object HashSetCodec : Codec<HashSet<Any?>> {
    
        override suspend fun WriteContext.encode(value: HashSet<Any?>) {
            writeCollectionCheckingForCircularElements(value)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables.cc

      if (!session) return module.emitOpError() << "no session provided";
    
      // Read all resource variables from the session.
      std::vector<std::string> variable_names;
      variable_names.reserve(resource_names.size());
      for (StringRef name : resource_names) variable_names.push_back(name.str());
    
      std::vector<Tensor> resource_tensors;
      Status status = session->Run(
          /*inputs=*/{}, variable_names,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         *
         * Some variables can have their names changed by special annotations like `@ParameterName(name = "newName")`. This is used to preserve
         * the names of the lambda parameters in the situations like this:
         *
         * ```
         * // compiled library
         * fun foo(): (bar: String) -> Unit { ... }
         *
         * // source code
         * fun test() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top