Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for logical (0.34 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Kube-controller-manager removes deprecated command flags: --volume-host-cidr-denylist and --volume-host-allow-local-loopback ([#124017](https://github.com/kubernetes/kubernetes/pull/124017), [@carlory](https://github.com/carlory)) [SIG API Machinery, Apps, Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		},
    		{
    			pod: newResourcePod(framework.Resource{EphemeralStorage: 25}),
    			nodeInfo: framework.NewNodeInfo(
    				newResourcePod(framework.Resource{MilliCPU: 2, Memory: 2})),
    			name:       "storage ephemeral local storage request exceeds allocatable",
    			wantStatus: framework.NewStatus(framework.Unschedulable, getErrReason(v1.ResourceEphemeralStorage)),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  3. cmd/iam.go

    		return auth.ErrInvalidSecretKeyLength
    	}
    
    	return sys.store.UpdateUserSecretKey(ctx, accessKey, secretKey)
    }
    
    // purgeExpiredCredentialsForExternalSSO - validates if local credentials are still valid
    // by checking remote IDP if the relevant users are still active and present.
    func (sys *IAMSys) purgeExpiredCredentialsForExternalSSO(ctx context.Context) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrReplicationDenyEditError: {
    		Code:           "XMinioReplicationDenyEdit",
    		Description:    "Cannot alter local replication config since this server is in a cluster replication setup",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketRemoteIdenticalToSource: {
    		Code:           "XMinioAdminRemoteIdenticalToSource",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	Delete(pod *v1.Pod) error
    	// TODO(sanposhiho): move all PreEnqueueCkeck to Requeue and delete it from this parameter eventually.
    	// Some PreEnqueueCheck include event filtering logic based on some in-tree plugins
    	// and it affect badly to other plugins.
    	// See https://github.com/kubernetes/kubernetes/issues/110175
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	// The SPIFFE identity of the workload. The identity is joined to form spiffe://<trust_domain>/ns/<namespace>/sa/<service_account>.
    	// TrustDomain of the workload. May be elided if this is the mesh wide default (typically cluster.local)
    	TrustDomain string `protobuf:"bytes,6,opt,name=trust_domain,json=trustDomain,proto3" json:"trust_domain,omitempty"`
    	// ServiceAccount of the workload. May be elided if this is "default"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    			readers[index] = newBitrotReader(disk, metaArr[index].Data, bucket, partPath, tillOffset,
    				checksumInfo.Algorithm, checksumInfo.Hash, erasure.ShardSize())
    
    			// Prefer local disks
    			prefer[index] = disk.Hostname() == ""
    		}
    
    		written, err := erasure.Decode(ctx, writer, readers, partOffset, partLength, partSize, prefer)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    	s.formatLastCheck = time.Now()
    	s.Unlock()
    	return diskID, nil
    }
    
    // Make a volume entry.
    func (s *xlStorage) SetDiskID(id string) {
    	// NO-OP for xlStorage as it is handled either by xlStorageDiskIDCheck{} for local disks or
    	// storage rest server for remote disks.
    }
    
    func (s *xlStorage) MakeVolBulk(ctx context.Context, volumes ...string) error {
    	for _, volume := range volumes {
    		err := s.MakeVol(ctx, volume)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			key, storedObj = testPropagateStore(ctx, t, store, obj)
    		})
    	}
    }
    
    // The following set of Delete tests are testing the logic of adding `suggestion`
    // as a parameter with probably value of the current state.
    // Introducing it for GuaranteedUpdate cause a number of issues, so we're addressing
    // all of those upfront by adding appropriate tests:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top