Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 316 for svcname (0.1 sec)

  1. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

      @get:JvmName("immutable") val immutable: Boolean,
      internal var headerValue: String?,
    ) {
      @JvmName("-deprecated_noCache")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "noCache"),
        level = DeprecationLevel.ERROR,
      )
      fun noCache(): Boolean = noCache
    
      @JvmName("-deprecated_noStore")
      @Deprecated(
        message = "moved to val",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyConstraintHandlerScope.kt

         * @return The dependency constraint.
         * @see [DependencyConstraintHandler.add]
         * @since 8.5
         */
        @Incubating
        @JvmName("invokeDependencyScope")
        operator fun NamedDomainObjectProvider<DependencyScopeConfiguration>.invoke(dependencyConstraintNotation: Any): DependencyConstraint =
            constraints.add(name, dependencyConstraintNotation)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. pkg/controller/volume/expand/expand_controller_test.go

    			VolumeID: volumeName,
    			FSType:   "ext4",
    		}
    	}
    	return pv
    }
    
    func getFakePersistentVolumeClaim(pvcName, volumeName, statusSize, requestSize string, uid types.UID) *v1.PersistentVolumeClaim {
    	pvc := &v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{Name: pvcName, Namespace: "default", UID: uid},
    		Spec: v1.PersistentVolumeClaimSpec{
    			Resources: v1.VolumeResourceRequirements{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InvalidManagedModelMutationIntegrationTest.groovy

        def "mutating managed inputs of a rule is not allowed"() {
            when:
            buildScript '''
                @Managed
                interface Person {
                    String getName()
                    void setName(String name)
                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void person(Person person) {
                    }
    
                    @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/M2ResourcePatternTest.groovy

            def pattern = new M2ResourcePattern("prefix/[organisation]/[module]/[revision]/[type]s/[revision]/[artifact].[ext]")
            def ivyName = new DefaultIvyArtifactName("projectA", "pom", "pom")
            def moduleId = DefaultModuleIdentifier.newId(group, module)
    
            expect:
            pattern.toVersionListPattern(moduleId, ivyName).path == expectedPath
    
            where:
            group       | module     | expectedPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Challenge.kt

        authParams["charset"] = charset.name()
        return Challenge(scheme, authParams)
      }
    
      @JvmName("-deprecated_scheme")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "scheme"),
        level = DeprecationLevel.ERROR,
      )
      fun scheme(): String = scheme
    
      @JvmName("-deprecated_authParams")
      @Deprecated(
        message = "moved to val",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. cmd/tier-handlers.go

    	ctx := r.Context()
    
    	objAPI, cred := validateAdminReq(ctx, w, r, policy.SetTierAction)
    	if objAPI == nil {
    		return
    	}
    	vars := mux.Vars(r)
    	scName := vars["tier"]
    
    	password := cred.SecretKey
    	reqBytes, err := madmin.DecryptData(password, io.LimitReader(r.Body, r.ContentLength))
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    		},
    	}
    }
    
    func unscheduled(pod *v1.Pod) *v1.Pod {
    	pod.Spec.NodeName = ""
    	return pod
    }
    
    func withPVC(pvcName string, pod *v1.Pod) *v1.Pod {
    	volume := v1.Volume{
    		Name: pvcName,
    		VolumeSource: v1.VolumeSource{
    			PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
    				ClaimName: pvcName,
    			},
    		},
    	}
    	pod.Spec.Volumes = append(pod.Spec.Volumes, volume)
    	return pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetector.java

            String runtimeName = metadata.get(ProbedSystemProperty.RUNTIME_NAME);
            String runtimeVersion = metadata.get(ProbedSystemProperty.RUNTIME_VERSION);
            String jvmName = metadata.get(ProbedSystemProperty.VM_NAME);
            String jvmVersion = metadata.get(ProbedSystemProperty.VM_VERSION);
            String jvmVendor = metadata.get(ProbedSystemProperty.VM_VENDOR);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 02:32:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

    - Method DefaultStructBindingsStoreTest.ProtectedAbstractMethods.setName(java.lang.String) is not a valid method: Protected and private methods are not supported."""
        }
    
        @Managed
        static abstract class ProtectedAndPrivateNonAbstractMethods {
            protected String getName() {
                return null;
            }
    
            private void setName(String name) {}
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top