Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for teleport (0.27 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/modulemap/GenerateModuleMapFileTest.groovy

            then:
            normaliseLineSeparators(moduleMapFile.text) == """module foo {
    \tumbrella "${headers.absolutePath}"
    \tumbrella "${moreHeaders.absolutePath}"
    \texport *
    }
    """
        }
    
        def "does not include non-existent directories"() {
            def moduleMapFile = new File(tempDir, "module.modulemap")
            def headers = new File(tempDir, 'headers').tap { mkdirs() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pkg/proxy/servicechangetracker_test.go

    					Ports: []v1.ServicePort{
    						{
    							Name:     "testPort",
    							Port:     int32(12345),
    							Protocol: v1.ProtocolTCP,
    						},
    					},
    				},
    			},
    			expected: map[ServicePortName]*BaseServicePortInfo{
    				makeServicePortName("test", "extra-space", "testPort", v1.ProtocolTCP): makeTestServiceInfo(testClusterIPv4, 12345, "TCP", 0, func(bsvcPortInfo *BaseServicePortInfo) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  3. pkg/proxy/conntrack/cleanup_test.go

    			ClusterIP:   testClusterIP,
    			ExternalIPs: []string{testExternalIP},
    			Ports: []v1.ServicePort{
    				{
    					Name:     "dns-tcp",
    					Port:     testPort,
    					Protocol: v1.ProtocolTCP,
    				},
    				{
    					Name:     "dns-udp",
    					Port:     testPort,
    					NodePort: testNodePort,
    					Protocol: v1.ProtocolUDP,
    				},
    			},
    		},
    		Status: v1.ServiceStatus{
    			LoadBalancer: v1.LoadBalancerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/modulemap/GenerateModuleMapFile.java

                    return new File(path).exists();
                }
            });
            lines.addAll(collect(validHeaderDirs, path -> "\tumbrella \"" + path + "\""));
            lines.add("\texport *");
            lines.add("}");
            try {
                Files.createParentDirs(moduleMapFile);
                FileUtils.writeLines(moduleMapFile, lines);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. pkg/registry/core/service/strategy_test.go

    		}, {
    			name:   "clear nodePorts when removing a port",
    			svc:    makeValidServiceCustom(setTypeLoadBalancer, setNodePorts),
    			patch:  patches(setTypeClusterIP, delPort),
    			expect: makeValidServiceCustom(delPort),
    		}, {
    			name:   "clear nodePorts when changing a port",
    			svc:    makeValidServiceCustom(setTypeLoadBalancer, setNodePorts),
    			patch:  patches(setTypeClusterIP, changePort),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. cmd/common-main.go

    	if globalIsTLS {
    		// If TLS certificates are provided enforce the HTTPS.
    		server.EnabledListeners = []string{"https"}
    		server.TLSPort = consolePort
    		// Need to store tls-port, tls-host un config variables so secure.middleware can read from there
    		consoleapi.TLSPort = globalMinioConsolePort
    		consoleapi.Hostname = globalMinioConsoleHost
    	}
    
    	return server, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    				assert.Equal(t, testPodSandboxID, podSandboxID, "pod sandbox id")
    				// The port should be valid if it reaches here.
    				testPort, err := strconv.ParseInt(test.port, 10, 32)
    				require.NoError(t, err, "parse port")
    				assert.Equal(t, int32(testPort), port, "port")
    
    				if test.clientData != "" {
    					fromClient := make([]byte, 32)
    					n, err := stream.Read(fromClient)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top