Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for setFid (0.14 sec)

  1. pkg/controller/statefulset/stateful_pod_control_test.go

    				if err := indexer.Update(update.GetObject()); err != nil {
    					t.Fatalf("could not update index: %v", err)
    				}
    				return true, update.GetObject(), nil
    			})
    			set := newStatefulSet(3)
    			set.GetObjectMeta().SetUID("set-123")
    			pod0 := newStatefulSetPod(set, 0)
    			claims0 := getPersistentVolumeClaims(set, pod0)
    			for k := range claims0 {
    				claim := claims0[k]
    				if tc.ownerRef != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

            if (configMap == null) {
                return Collections.emptyMap();
            }
            return configMap;
        }
    
        @Override
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadata.java

        }
    
        @Override
        public ModuleComponentIdentifier getId() {
            return componentId;
        }
    
        @Override
        public ModuleVersionIdentifier getModuleVersionId() {
            return moduleVersionId;
        }
    
        @Override
        public void setId(ModuleComponentIdentifier componentId) {
            this.componentId = componentId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setsid() (pid int, err error) {
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec() + SYS_SETSID<<4)
    	pid = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setuid(uid int) (err error) {
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  5. pkg/xds/server.go

    	GetWatchedResource(url string) *WatchedResource
    	NewWatchedResource(url string, names []string)
    	UpdateWatchedResource(string, func(*WatchedResource) *WatchedResource)
    	// GetID identifies an xDS client. This is different from a connection ID.
    	GetID() string
    }
    
    // IsWildcardTypeURL checks whether a given type is a wildcard type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/net_test.go

    	fakeIPSetDeps.AssertExpectations(t)
    }
    
    func TestSyncHostIPSetsIgnoresPodIPAddErrorAndContinues(t *testing.T) {
    	pod1 := buildConvincingPod(false)
    	pod2 := buildConvincingPod(false)
    
    	pod2.ObjectMeta.SetUID("4455")
    
    	fakeIPSetDeps := ipset.FakeNLDeps()
    
    	var pod1UID string = string(pod1.ObjectMeta.UID)
    	var pod2UID string = string(pod2.ObjectMeta.UID)
    	ipProto := uint8(unix.IPPROTO_TCP)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		return nil
    	}
    
    	user := &kubecontainer.ContainerUser{}
    	if statusUser.GetLinux() != nil {
    		user.Linux = &kubecontainer.LinuxContainerUser{
    			UID:                statusUser.GetLinux().GetUid(),
    			GID:                statusUser.GetLinux().GetGid(),
    			SupplementalGroups: statusUser.GetLinux().GetSupplementalGroups(),
    		}
    	}
    
    	return user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/ads.go

    	// way only new push contexts will be registered for this proxy.
    	proxy.LastPushContext = s.globalPushContext()
    	// First request so initialize connection id and start tracking it.
    	con.SetID(connectionID(proxy.ID))
    	con.node = node
    	con.proxy = proxy
    	if proxy.IsZTunnel() && !features.EnableAmbient {
    		return fmt.Errorf("ztunnel requires PILOT_ENABLE_AMBIENT=true")
    	}
    
    	// Authorize xds clients
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    			}{
    				Maintenance:   opts.Maintenance,
    				SetID:         setIdx,
    				PoolID:        poolIdx,
    				Healthy:       erasureSetUpCount[poolIdx][setIdx].online >= poolWriteQuorums[poolIdx],
    				HealthyRead:   erasureSetUpCount[poolIdx][setIdx].online >= poolReadQuorums[poolIdx],
    				HealthyDrives: erasureSetUpCount[poolIdx][setIdx].online,
    				HealingDrives: erasureSetUpCount[poolIdx][setIdx].healing,
    				ReadQuorum:    poolReadQuorums[poolIdx],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{1135, "", ""},
    	{1136, "EDC8136I", "File is not a STREAM."},
    	{1137, "EDC8137I", "STREAMS ioctl() timeout."},
    	{1138, "EDC8138I", "No STREAMS resources."},
    	{1139, "EDC8139I", "The message identified by set_id and msg_id is not in the message catalog."},
    	{1140, "EDC8140I", "Bad message."},
    	{1141, "EDC8141I", "Identifier removed."},
    	{1142, "", ""},
    	{1143, "", ""},
    	{1144, "EDC8144I", "The link has been severed."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top