Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for includedIf (0.26 sec)

  1. CREDITS

    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    	// reside in the same namespace and trust boundary.
    	// Note: Secrets that are not referenced by any Gateway, but are in the same namespace as the pod, are explicitly *not*
    	// included. This ensures we don't give permission to unexpected secrets, such as the citadel root key/cert.
    	VerifiedCertificateReferences sets.String
    }
    
    func (g *MergedGateway) HasAutoPassthroughGateways() bool {
    	if g != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	// deleted pod is included unless it's known to be terminated
    	pods[2].Status.Phase = v1.PodRunning
    	pods[2].DeletionTimestamp = &now
    	pods[2].Status.ContainerStatuses = []v1.ContainerStatus{
    		{State: v1.ContainerState{
    			Running: &v1.ContainerStateRunning{
    				StartedAt: now,
    			},
    		}},
    	}
    
    	// pending and running pods are included
    	pods[3].Status.Phase = v1.PodPending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    		return nil, fmt.Errorf("services have not yet been read at least once, cannot construct envvars")
    	}
    
    	var result []kubecontainer.EnvVar
    	// Note:  These are added to the docker Config, but are not included in the checksum computed
    	// by kubecontainer.HashContainer(...).  That way, we can still determine whether an
    	// v1.Container is already running by its hash. (We don't want to restart a container just
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * 📝 Add article: "Building a RESTful API with FastAPI: Secure Signup and Login Functionality Included". PR [#9733](https://github.com/tiangolo/fastapi/pull/9733) by [@dxphilo](https://github.com/dxphilo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    		Description:    "No AWSAccessKey was presented",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrInvalidToken: {
    		Code:           "InvalidTokenId",
    		Description:    "The security token included in the request is invalid",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    
    	// S3 extensions.
    	ErrContentSHA256Mismatch: {
    		Code:           "XAmzContentSHA256Mismatch",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    	defer store.runlock()
    
    	return filterPolicies(cache, policyName, bucketName)
    }
    
    // GetBucketUsers - returns users (not STS or service accounts) that have access
    // to the bucket. User is included even if a group policy that grants access to
    // the bucket is disabled.
    func (store *IAMStoreSys) GetBucketUsers(bucket string) (map[string]madmin.UserInfo, error) {
    	if bucket == "" {
    		return nil, errInvalidArgument
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. cmd/iam.go

    		},
    		UpdatedAt: updatedAt,
    	}))
    
    	return
    }
    
    // PolicyDBGet - gets policy set on a user or group. If a list of groups is
    // given, policies associated with them are included as well.
    func (sys *IAMSys) PolicyDBGet(name string, groups ...string) ([]string, error) {
    	if !sys.Initialized() {
    		return nil, errServerNotInitialized
    	}
    
    	return sys.store.PolicyDBGet(name, groups...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    	for _, fc := range virtualListener.FilterChains {
    		if fc.FilterChainMatch.DestinationPort.GetValue() == 15021 {
    			t.Fatalf("port 15021 should not be included in inbound listener")
    		}
    	}
    }
    
    func testInboundListenerConfigWithGrpc(t *testing.T, proxy *model.Proxy, services ...*model.Service) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top