Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 839 for JOIN (0.14 sec)

  1. pkg/volume/util/nested_volumes_test.go

    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:     "Big Pod",
    			err:      false,
    			volname:  "vol1",
    			expected: sets.New[string](filepath.Join("sub1", "sub2", "sub3"), filepath.Join("sub1", "sub2", "sub4"), filepath.Join("sub1", "sub2", "sub6"), "sub"),
    			pod: v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: testNamespace,
    					UID:       testPodUID,
    				},
    				Spec: v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tests/integration/helm/util.go

    		}
    	} else {
    		baseChartPath = filepath.Join(ManifestsChartPath, BaseChart)
    		discoveryChartPath = filepath.Join(ManifestsChartPath, ControlChartsDir, DiscoveryChartsDir)
    		gatewayChartPath = filepath.Join(ManifestsChartPath, version, GatewayChartsDir)
    		cniChartPath = filepath.Join(ManifestsChartPath, version, CniChartsDir)
    		ztunnelChartPath = filepath.Join(ManifestsChartPath, version, ZtunnelChartsDir)
    
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. internal/logger/message/audit/entry.go

    	q := r.URL.Query()
    	reqQuery := make(map[string]string, len(q))
    	for k, v := range q {
    		reqQuery[k] = strings.Join(v, ",")
    	}
    	entry.ReqQuery = reqQuery
    
    	reqHeader := make(map[string]string, len(r.Header))
    	for k, v := range r.Header {
    		reqHeader[k] = strings.Join(v, ",")
    	}
    	entry.ReqHeader = reqHeader
    
    	wh := w.Header()
    	entry.RequestID = wh.Get(xhttp.AmzRequestID)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/cc/training/coordinator.cc

    }
    
    Status Coordinator::Join() {
      // TODO(yuefengz): deal with stragglers.
      {
        mutex_lock l(mu_);
        if (!should_stop_) {
          return Status(absl::StatusCode::kFailedPrecondition,
                        "Joining coordinator without requesting to stop.");
        }
      }
    
      {
        mutex_lock l(runners_lock_);
        for (const auto& t : runners_) {
          ReportStatus(t->Join());
        }
        runners_.clear();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/kubelet_test.go

    	if err != nil {
    		return "", "", nil
    	}
    
    	var certKeyPathFn = func(dataDir string) (string, string, string) {
    		outputDir := filepath.Join(certDir, dataDir)
    		return outputDir, filepath.Join(outputDir, "kubelet.cert"), filepath.Join(outputDir, "kubelet.key")
    	}
    
    	writeDir, writeCertPath, writeKeyPath := certKeyPathFn("identity.tmp")
    	if err := os.Mkdir(writeDir, 0777); err != nil {
    		return "", "", err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. cni/pkg/iptables/iptables_test.go

    	}
    	return "ipv4"
    }
    
    func compareToGolden(t *testing.T, ipv6 bool, name string, actual []string) {
    	t.Helper()
    	gotBytes := []byte(strings.Join(actual, "\n"))
    	goldenFile := filepath.Join("testdata", name+".golden")
    	if ipv6 {
    		goldenFile = filepath.Join("testdata", name+"_ipv6.golden")
    	}
    	testutil.CompareContent(t, gotBytes, goldenFile)
    }
    
    func constructTestConfig() *Config {
    	return &Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	certFile = path.Join(tempDir, "etcdcert.pem")
    	if err := ioutil.WriteFile(certFile, []byte(testingcert.CertFileContent), 0644); err != nil {
    		t.Fatal(err)
    	}
    	keyFile = path.Join(tempDir, "etcdkey.pem")
    	if err := ioutil.WriteFile(keyFile, []byte(testingcert.KeyFileContent), 0644); err != nil {
    		t.Fatal(err)
    	}
    	caFile = path.Join(tempDir, "ca.pem")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/common/deployment/external.go

    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    			ClientCert: file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/cert-chain.pem")),
    			Key:        file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/key.pem")),
    			// Override hostname to match the SAN in the cert we are using
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. pkg/kubelet/util/util_windows.go

    	// this is why we have the extra logic in here instead of changing the function signature. Join the file to make sure the
    	// last path component is a file, so the operation chain works..
    	podResourcesDir := filepath.Base(filepath.Dir(filepath.Join(path, file)))
    	if podResourcesDir == "" {
    		// should not happen because the user can configure a root directory, and we expected a subdirectory inside
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

               group by testClass, testId, testProject
               """ }.join("UNION") }
             order by testClass, testId, testProject, os
    
        """
    
        @Nonnull
        static String teamcityBuildIdQueryFor(List<String> teamcityBuildIds) {
            return teamcityBuildIds.isEmpty() ? '' : " or teamcitybuildid in (${String.join(',', Collections.nCopies(teamcityBuildIds.size(), '?'))})"
        }
    
        @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top