Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for JOIN (0.07 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            return outputDirs(from, to, parts.join(quotedFileSeparator), stream)
        }
    
        Set<TestFile> gradleUserHomeOutputDirs(String from, String to, Closure<String> stream = { output }) {
            def parts = [Pattern.quote(cacheDir.absolutePath), "[\\w-]+", "transformed"]
            outputDirs(from, to, parts.join(quotedFileSeparator), stream)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. 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)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. 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)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. 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,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    	updatedNode.Spec.PodCIDRs = podCIDRs
    	kubeClient.ReactionChain = fake.NewSimpleClientset(&v1.NodeList{Items: []v1.Node{*updatedNode}}).ReactionChain
    	assert.NoError(t, kubelet.updateNodeStatus(ctx))
    	assert.Equal(t, strings.Join(podCIDRs, ","), kubelet.runtimeState.podCIDR(), "Pod CIDR should be updated now")
    	// 2 more action (There were 7 actions before).
    	actions = kubeClient.Actions()
    	assert.Len(t, actions, 9)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    		{
    			name:               "Checkpoint with default checkpoint location",
    			containerName:      fakePod.Pod.Containers[0].Name,
    			checkpointLocation: "",
    			expectedStatus:     nil,
    			expectedLocation: filepath.Join(
    				kubelet.getCheckpointsDir(),
    				fmt.Sprintf(
    					"checkpoint-%s_%s-%s",
    					fakePod.Pod.Name,
    					fakePod.Pod.Namespace,
    					fakePod.Pod.Containers[0].Name,
    				),
    			),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. 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
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		if sniHostname.SubsetOf(host.Name(hostname)) {
    			return
    		}
    	}
    	return AppendValidation(errs, fmt.Errorf("SNI host %q is not a compatible subset of any of the virtual service hosts: [%s]",
    		sniHost, strings.Join(context.Hosts, ", ")))
    }
    
    func validateTCPRoute(tcp *networking.TCPRoute, gatewaySemantics bool) (errs error) {
    	if tcp == nil {
    		return nil
    	}
    	for _, match := range tcp.Match {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    		subpather := og.volumePluginMgr.Host.GetSubpather()
    
    		migrated := getMigratedStatusBySpec(volumeToUnmount.VolumeSpec)
    
    		// Remove all bind-mounts for subPaths
    		podDir := filepath.Join(podsDir, string(volumeToUnmount.PodUID))
    		if err := subpather.CleanSubPaths(podDir, volumeToUnmount.InnerVolumeSpecName); err != nil {
    			eventErr, detailedErr := volumeToUnmount.GenerateError("error cleaning subPath mounts", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    				if !ok {
    					names := make([]string, 0, len(clusters))
    					for n := range clusters {
    						names = append(names, n)
    					}
    					t.Fatalf("cluster %v not found; have: %s", c, strings.Join(names, ", "))
    				}
    				g.Expect(len(cluster.CircuitBreakers.Thresholds)).To(Equal(1))
    				thresholds := cluster.CircuitBreakers.Thresholds[0]
    
    				if expected == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top