Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 958 for JOIN (0.05 sec)

  1. cmd/data-usage_test.go

    }
    
    func createUsageTestFiles(t *testing.T, base, bucket string, files []usageTestFile) {
    	for _, f := range files {
    		err := os.MkdirAll(filepath.Dir(filepath.Join(base, bucket, f.name)), os.ModePerm)
    		if err != nil {
    			t.Fatal(err)
    		}
    		err = os.WriteFile(filepath.Join(base, bucket, f.name), make([]byte, f.size), os.ModePerm)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    			values := append([]string{}, f.choices...)
    			sort.Strings(values)
    			comment = "[" + strings.Join(values, " | ") + "]"
    		case n == "sample_index":
    			st := sampleTypes(p)
    			if v == "" {
    				// Apply default (last sample index).
    				v = st[len(st)-1]
    			}
    			// Add comments for all sample types in profile.
    			comment = "[" + strings.Join(st, " | ") + "]"
    		case n == "source_path":
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java

            for (final String key : extractData.getKeySet()) {
                logger.info("{}={}", key, String.join("|", extractData.getValues(key)));
            }
            assertEquals("4", extractData.getValues("cp:revision")[0]);
            assertEquals("こめんと", extractData.getValues("w:Comments")[0]);
            assertEquals("たぐ|さぶたいとる", String.join("|", extractData.getValues("dc:subject")));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/options/options_test.go

    			username = "none, http"
    		}
    		w.WriteHeader(200)
    		w.Write([]byte(`ok`))
    	}))
    	defer insecureserver.Close()
    
    	// config file and kubeconfig
    	configFile := filepath.Join(tmpDir, "scheduler.yaml")
    	configKubeconfig := filepath.Join(tmpDir, "config.kubeconfig")
    	if err := os.WriteFile(configFile, []byte(fmt.Sprintf(`
    apiVersion: kubescheduler.config.k8s.io/v1
    kind: KubeSchedulerConfiguration
    clientConnection:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

        assertThat(UnsignedLongs.join(",")).isEmpty();
        assertThat(UnsignedLongs.join(",", 1)).isEqualTo("1");
        assertThat(UnsignedLongs.join(",", 1, 2)).isEqualTo("1,2");
        assertThat(UnsignedLongs.join(",", -1, Long.MIN_VALUE))
            .isEqualTo("18446744073709551615,9223372036854775808");
        assertThat(UnsignedLongs.join("", 1, 2, 3)).isEqualTo("123");
        assertThat(UnsignedLongs.join("", -1, Long.MIN_VALUE))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:36:17 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/istio_ca.go

    				path.Join(LocalCertDir.Get(), ca.TLSSecretRootCertFile),
    			},
    			SigningCertFile: tlsSigningFile,
    			SigningKeyFile:  path.Join(LocalCertDir.Get(), ca.TLSSecretCAPrivateKeyFile),
    		}, nil
    	} else if !os.IsNotExist(err) {
    		return ca.SigningCAFileBundle{}, err
    	}
    
    	log.Info("Using istiod file format for signing ca files")
    	// default ca file format
    	return ca.SigningCAFileBundle{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. cmd/signature-v4-parser_test.go

    			t.Errorf("Test %d: Expected the APIErrCode to be %d, got %d", i+1, testCase.expectedErrCode, actualErrCode)
    		}
    		if actualErrCode == ErrNone {
    			if strings.Join(testCase.expectedSignedHeaders, ",") != strings.Join(actualSignedHeaders, ",") {
    				t.Errorf("Test %d: Expected the result to be \"%v\", but got \"%v\". ", i+1, testCase.expectedSignedHeaders, actualSignedHeaders)
    			}
    		}
    
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

                @Managed
                interface ManagedType {
                    ${properties.dsl.join('\n')}
                }
    
                class PluginRules extends RuleSource {
                    @Model
                    void createModel(ManagedType p) {
                        ${properties.assignment.join('\n')}
                    }
    
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/server_test.go

    	// https server
    	server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		w.WriteHeader(200)
    		w.Write([]byte(`ok`))
    	}))
    	defer server.Close()
    
    	configKubeconfig := filepath.Join(tmpDir, "config.kubeconfig")
    	if err := os.WriteFile(configKubeconfig, []byte(fmt.Sprintf(`
    apiVersion: v1
    kind: Config
    clusters:
    - cluster:
        insecure-skip-tls-verify: true
        server: %s
      name: default
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			}
    			signatures := map[string]int{
    				serverSig: -1,
    			}
    			for j, c := range test.SNICerts {
    				sniDir := filepath.Join(certDir, specToName(c.TestCertSpec))
    				certBundleFile := filepath.Join(sniDir, "cert")
    				keyFile := filepath.Join(sniDir, "key")
    				err := getOrCreateTestCertFiles(certBundleFile, keyFile, c.TestCertSpec)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top