Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for svcname (0.2 sec)

  1. 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)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtSdkModuleImpl.kt

        override val contentScope: GlobalSearchScope,
        override val platform: TargetPlatform,
        override val project: Project,
        private val binaryRoots: Collection<Path>,
        override val sdkName: String,
    ) : KtSdkModule, KtModuleWithPlatform {
        override val transitiveDependsOnDependencies: List<KtModule> by lazy {
            computeTransitiveDependsOnDependencies(directDependsOnDependencies)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 15:47:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    		})
    	}
    }
    
    func getPodPVCAndPV(volumeMode v1.PersistentVolumeMode, podName, pvName, pvcName string) (*v1.Pod, *v1.PersistentVolume, *v1.PersistentVolumeClaim) {
    	pv := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: pvName,
    			UID:  "pvuid",
    		},
    		Spec: v1.PersistentVolumeSpec{
    			ClaimRef:   &v1.ObjectReference{Name: pvcName},
    			VolumeMode: &volumeMode,
    		},
    	}
    	pvc := &v1.PersistentVolumeClaim{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	pvcName := ""
    	isEphemeral := false
    	switch {
    	case vol.PersistentVolumeClaim != nil:
    		pvcName = vol.PersistentVolumeClaim.ClaimName
    	case vol.Ephemeral != nil:
    		// Generic ephemeral inline volumes also use a PVC,
    		// just with a computed name, and...
    		pvcName = ephemeral.VolumeClaimName(pod, vol)
    		isEphemeral = true
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        get() = propertyFromAnySource(STUDIO_HOME)
    
    
    /**
     * If set to `true`, run docs tests with the configuration cache enabled.
     */
    val Project.configurationCacheEnabledForDocsTests: Boolean
        @JvmName("isConfigurationCacheEnabledForDocsTests") get() = gradleProperty(ENABLE_CONFIGURATION_CACHE_FOR_DOCS_TESTS).orNull.toBoolean()
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

    fun FirAnnotationContainer.getJvmNameFromAnnotation(session: FirSession, target: AnnotationUseSiteTarget? = null): String? {
        val annotationCalls = getAnnotationsByClassId(JvmStandardClassIds.Annotations.JvmName, session)
        return annotationCalls.firstNotNullOfOrNull { call ->
            call.getStringArgument(StandardNames.NAME, session)
                ?.takeIf { target == null || call.useSiteTarget == target }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

            this.factory = factory;
        }
    
        @Override
        public void execute(final WorkerProcessContext workerProcessContext) {
            Thread.currentThread().setName(WORK_THREAD_NAME);
    
            LOGGER.info("{} started executing tests.", workerProcessContext.getDisplayName());
    
            SecurityManager securityManager = System.getSecurityManager();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

         * 3. All callable names should be contained in the [getTopLevelCallableNames].
         *
         * Additional restrictions on the file text:
         * 1. The File should not contain the `kotlin.jvm.JvmMultifileClass` and `kotlin.jvm.JvmName` annotations on the file level.
         * 2. All declaration types should be specified explicitly.
         *
         * @see KaResolveExtensionFile
         */
        public abstract fun buildFileText(): String
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network.go

    			}
    
    			// services in this registry matching the registryServiceName and port are part of this network
    			for _, gw := range v.Gateways {
    				if gwSvcName := gw.GetRegistryServiceName(); gwSvcName != "" {
    					svc := host.Name(gwSvcName)
    					n.registryServiceNameGateways[svc] = append(n.registryServiceNameGateways[svc], model.NetworkGateway{
    						Network: network.ID(id),
    						Cluster: n.clusterID,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. cmd/metrics-resource.go

    		Value:          rm.Current,
    		VariableLabels: cloneMSS(rm.Labels),
    	})
    
    	if requireAvgMax {
    		avgName := MetricName(fmt.Sprintf("%s_avg", name))
    		avgHelp := fmt.Sprintf("%s (avg)", help)
    		metrics = append(metrics, MetricV2{
    			Description:    getResourceMetricDescription(subSys, avgName, avgHelp),
    			Value:          math.Round(rm.Avg*100) / 100,
    			VariableLabels: cloneMSS(rm.Labels),
    		})
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top