Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for JOIN (0.08 sec)

  1. cmd/iam-store.go

    			cache.iamUserPolicyMap.Store(u, newMappedPolicy(strings.Join(pset.ToSlice(), ",")))
    			return true
    		})
    
    		// update group policy map
    		cache.iamGroupPolicyMap.Range(func(g string, mp MappedPolicy) bool {
    			pset := mp.policySet()
    			if !pset.Contains(policy) {
    				return true
    			}
    			pset.Remove(policy)
    			cache.iamGroupPolicyMap.Store(g, newMappedPolicy(strings.Join(pset.ToSlice(), ",")))
    			return true
    		})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    			t.Errorf("expected %s, got %s", expectedPodName, podFullName)
    		}
    		if containerName != expectedContainerName {
    			t.Errorf("expected %s, got %s", expectedContainerName, containerName)
    		}
    		if strings.Join(cmd, " ") != expectedCommand {
    			t.Errorf("expected: %s, got %v", expectedCommand, cmd)
    		}
    
    		return []byte(output), nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    		if !eq(a, tt.a) {
    			t.Errorf("Split(%q, %q, %d) = %v; want %v", tt.s, tt.sep, tt.n, a, tt.a)
    			continue
    		}
    		if tt.n == 0 {
    			continue
    		}
    		s := Join(a, tt.sep)
    		if s != tt.s {
    			t.Errorf("Join(Split(%q, %q, %d), %q) = %q", tt.s, tt.sep, tt.n, tt.sep, s)
    		}
    		if tt.n < 0 {
    			b := Split(tt.s, tt.sep)
    			if !reflect.DeepEqual(a, b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    }
    func sozGenerated(x uint64) (n int) {
    	return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63))))
    }
    func (this *Carp) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&Carp{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    }
    func sozGenerated(x uint64) (n int) {
    	return sovGenerated(uint64((x << 1) ^ uint64((int64(x) >> 63))))
    }
    func (this *Pod) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&Pod{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    			Denominator: xdstype.FractionalPercent_HUNDRED,
    		},
    	}
    
    	out.AllowCredentials = in.AllowCredentials
    	out.AllowHeaders = strings.Join(in.AllowHeaders, ",")
    	out.AllowMethods = strings.Join(in.AllowMethods, ",")
    	out.ExposeHeaders = strings.Join(in.ExposeHeaders, ",")
    	if in.MaxAge != nil {
    		out.MaxAge = strconv.FormatInt(in.MaxAge.GetSeconds(), 10)
    	}
    	return &out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. pkg/volume/testing/testing.go

    	return os.MkdirAll(dir, 0750)
    }
    
    func (fv *FakeVolume) GetPath() string {
    	fv.RLock()
    	defer fv.RUnlock()
    	return fv.getPath()
    }
    
    func (fv *FakeVolume) getPath() string {
    	return filepath.Join(fv.Plugin.Host.GetPodVolumeDir(fv.PodUID, utilstrings.EscapeQualifiedName(fv.Plugin.PluginName), fv.VolName))
    }
    
    func (fv *FakeVolume) TearDown() error {
    	fv.Lock()
    	defer fv.Unlock()
    	fv.TearDownCallCount++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import static org.gradle.internal.service.scopes.DefaultGradleUserHomeScopeServiceRegistry.REUSE_USER_HOME_SERVICES;
    import static org.gradle.util.internal.CollectionUtils.collect;
    import static org.gradle.util.internal.CollectionUtils.join;
    import static org.gradle.util.internal.DefaultGradleVersion.VERSION_OVERRIDE_VAR;
    
    public abstract class AbstractGradleExecuter implements GradleExecuter, ResettableExpectations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    			continue
    		}
    
    		if want := tt.a[len(tt.a)-1] + "z"; string(x) != want {
    			t.Errorf("last appended result was %s; want %s", x, want)
    		}
    
    		s := Join(a, []byte(tt.sep))
    		if string(s) != tt.s {
    			t.Errorf(`Join(Split(%q, %q, %d), %q) = %q`, tt.s, tt.sep, tt.n, tt.sep, s)
    		}
    		if tt.n < 0 {
    			b := Split([]byte(tt.s), []byte(tt.sep))
    			if !reflect.DeepEqual(a, b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                def attributesBlock = attributes.collect { k, v ->
                    "it.attribute($k, $v)"
                }.join('; ')
                "case ('$version'): details.result.attributes { $attributesBlock }; break"
            }.join('\n                    ')
    
            buildFile << """
            import org.gradle.api.internal.project.ProjectInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top