Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for componentName (0.2 sec)

  1. cmd/kubeadm/app/constants/constants.go

    }
    
    // GetStaticPodFilepath returns the location on the disk where the Static Pod should be present
    func GetStaticPodFilepath(componentName, manifestsDir string) string {
    	return filepath.Join(manifestsDir, componentName+".yaml")
    }
    
    // GetAdminKubeConfigPath returns the location on the disk where admin kubeconfig is located by default
    func GetAdminKubeConfigPath() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    		filepath.Join(testenv.IstioSrc, IntegrationTestRemoteGatewaysIOP),
    	}
    	if i.gatewayIOP.file != "" {
    		inFilenames = append(inFilenames, i.gatewayIOP.file)
    	}
    	args := installArgs{
    		ComponentName: "ingress and egress gateways",
    		Files:         inFilenames,
    		Set: []string{
    			"values.global.imagePullPolicy=" + i.ctx.Settings().Image.PullPolicy,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocator.java

    import org.gradle.util.internal.VersionNumber;
    
    import java.io.File;
    
    public class WindowsKitWindowsSdkLocator extends AbstractWindowsKitComponentLocator<WindowsKitSdkInstall> {
        private static final String COMPONENT_NAME = "um";
        private static final String DISPLAY_NAME = "Windows SDK";
        private static final String RC_EXE = "rc.exe";
        private final SystemInfo systemInfo;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocator.java

        private static final String DISPLAY_NAME = "Universal C Runtime";
        private static final String COMPONENT_NAME = "ucrt";
    
        public DefaultUcrtLocator(WindowsRegistry windowsRegistry) {
            super(windowsRegistry);
        }
    
        @Override
        public String getComponentName() {
            return COMPONENT_NAME;
        }
    
        @Override
        String getDisplayName() {
            return DISPLAY_NAME;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

            if (jvmComponents.size() > 1) {
                String componentNames = CollectionUtils.join(", ", jvmComponents.getNames());
                throw new InvalidUserCodeException("Cannot register feature because multiple JVM components are present. The following components were found: " + componentNames);
            } else if (!jvmComponents.isEmpty()) {
                return jvmComponents.iterator().next();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    Object.entries(SYSTEM_VALUE_COMPONENTS)){const node=getDescendantVmRegionClassificationNode(processDump.vmRegions,componentSpec.classificationPath);const componentPath=['system_memory'];if(componentName)componentPath.push(componentName);addProcessScalar({source:'reported_by_os',component:componentPath,property:PROPORTIONAL_RESIDENT_SIZE,value:node...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top