Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for join (0.47 sec)

  1. cmd/admin-handlers.go

    				}
    			}
    
    			// Remove the original pools args present at index 0
    			anonPools[pi] = strings.Join(poolsMatch[1:], "")
    		}
    		return cmdLineWithoutPools + strings.Join(anonPools, " ")
    	}
    
    	anonymizeProcInfo := func(p *madmin.ProcInfo) {
    		p.CmdLine = anonymizeCmdLine(p.CmdLine)
    		anonymizeAddr(p)
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  2. cmd/bucket-replication.go

    		enc, ok := oi2.Metadata[xhttp.ContentEncoding]
    		if !ok {
    			enc, ok = oi2.Metadata[strings.ToLower(xhttp.ContentEncoding)]
    			if !ok {
    				return replicateMetadata
    			}
    		}
    		if strings.Join(enc, ",") != oi1.ContentEncoding {
    			return replicateMetadata
    		}
    	}
    
    	t, _ := tags.ParseObjectTags(oi1.UserTags)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String mid(String, int, int); public static String[] split(String); public static String[] split(String, String); public static String[] split(String, String, int); public static String concatenate(Object[]); public static String join(Object[], String); public static String join(java.util.Iterator, String); public static String replaceOnce(String, char, char); public static String replace(String, char, char); public static String replace(String, char, char, int); public static String replaceOnce(String,...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - kubeadm: added the `WaitForAllControlPlaneComponents` feature gate. It could be used to tell kubeadm to wait for all control plane components to be ready when running "kubeadm init" or "kubeadm join --control-plane". Previously, kubeadm only waited for the kube-apiserver. The "kubeadm join" workflow now includes a new experimental phase called "wait-control-plane". This phase was marked as non-experimental when WaitForAllControlPlaneComponents became GA. Accordingly, a "kubeadm init" phase...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    			diffSlc := getMissingSiteNames(currDeploymentIDsSet, deploymentIDsSet, currSites.Sites)
    			return madmin.ReplicateAddStatus{}, errSRInvalidRequest(fmt.Errorf("all existing replicated sites must be specified - missing %s", strings.Join(diffSlc, " ")))
    		}
    	}
    
    	// validate that all clusters are using the same IDP settings.
    	err = c.validateIDPSettings(ctx, sites)
    	if err != nil {
    		return madmin.ReplicateAddStatus{}, err
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

          object : EventListener() {
            override fun requestHeadersStart(call: Call) {
              try {
                // Cancel call from another thread to avoid reentrance.
                cancelLater(call, 0).join()
              } catch (e: InterruptedException) {
                throw AssertionError()
              }
            }
          }
        client = client.newBuilder().eventListener(listener).build()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

         */
        String smartToString(ImmutableSet<ListenableFuture<String>> inputs) {
          Iterable<String> inputNames = Iterables.transform(inputs, nameGetter);
          return Joiner.on(", ").join(inputNames);
        }
    
        void smartAssertTrue(
            ImmutableSet<ListenableFuture<String>> inputs, Exception cause, boolean expression) {
          if (!expression) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    func setHeadGetRespHeaders(w http.ResponseWriter, reqParams url.Values) {
    	for k, v := range reqParams {
    		if header, ok := supportedHeadGetReqParams[strings.ToLower(k)]; ok {
    			w.Header()[header] = []string{strings.Join(v, ",")}
    		}
    	}
    }
    
    // SelectObjectContentHandler - GET Object?select
    // ----------
    // This implementation of the GET operation retrieves object content based
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  9. cmd/server_test.go

    		} else {
    			expectedSet := set.CreateStringSet(expectedMap[k]...)
    			gotSet := set.CreateStringSet(strings.Split(v[0], ", ")...)
    			if !expectedSet.Equals(gotSet) {
    				c.Errorf("Expected value %v, got %v", strings.Join(expectedMap[k], ", "), v)
    			}
    		}
    	}
    }
    
    func (s *TestSuiteCommon) TestObjectDir(c *check) {
    	bucketName := getRandomBucketName()
    	// HTTP request to create the bucket.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

         */
        String smartToString(ImmutableSet<ListenableFuture<String>> inputs) {
          Iterable<String> inputNames = Iterables.transform(inputs, nameGetter);
          return Joiner.on(", ").join(inputNames);
        }
    
        void smartAssertTrue(
            ImmutableSet<ListenableFuture<String>> inputs, Exception cause, boolean expression) {
          if (!expression) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
Back to top