Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 626 for JOIN (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    fullMessage = join(fullMessage, "Unknown host " + exceptionMessage);
                } else if (!fullMessage.contains(exceptionMessage)) {
                    fullMessage = join(fullMessage, exceptionMessage);
                }
    
                if (!dejaVu.add(t)) {
                    fullMessage = join(fullMessage, "[CIRCULAR REFERENCE]");
                    break;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/clean/clean.go

    			subdirs, _ := filepath.Glob(filepath.Join(str.QuoteGlob(dir), "[0-9a-f][0-9a-f]"))
    			printedErrors := false
    			if len(subdirs) > 0 {
    				if err := sh.RemoveAll(subdirs...); err != nil && !printedErrors {
    					printedErrors = true
    					base.Error(err)
    				}
    			}
    
    			logFile := filepath.Join(dir, "log.txt")
    			if err := sh.RemoveAll(logFile); err != nil && !printedErrors {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/envcmd/env.go

    		return nil
    	}
    	cmd := b.GccCmd(".", "")
    
    	join := func(s []string) string {
    		q, err := quoted.Join(s)
    		if err != nil {
    			return strings.Join(s, " ")
    		}
    		return q
    	}
    
    	ret := []cfg.EnvVar{
    		// Note: Update the switch in runEnv below when adding to this list.
    		{Name: "CGO_CFLAGS", Value: join(cflags)},
    		{Name: "CGO_CPPFLAGS", Value: join(cppflags)},
    		{Name: "CGO_CXXFLAGS", Value: join(cxxflags)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	kind: JoinConfiguration
    //
    // To print the defaults for "init" and "join" actions use the following commands:
    //
    //	kubeadm config print init-defaults
    //	kubeadm config print join-defaults
    //
    // The list of configuration types that must be included in a configuration file depends by the action you are
    // performing (init or join) and by the configuration options you are going to use (defaults or advanced customization).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/marshal_test.go

    			name:         "FooBar",
    			fileContents: bytes.Join([][]byte{files["foo"], files["bar"]}, []byte(constants.YAMLDocumentSeparator)),
    			gvkmap: kubeadmapi.DocumentMap{
    				{Group: "foo.k8s.io", Version: "v1", Kind: "Foo"}: files["foo"],
    				{Group: "bar.k8s.io", Version: "v2", Kind: "Bar"}: files["bar"],
    			},
    		},
    		{
    			name:         "FooTwiceInvalid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top