Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 487 for modesA (0.09 sec)

  1. src/cmd/compile/internal/noder/codes.go

    David Chase <******@****.***> 1699395635 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 20:07:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. pkg/test/echo/common/model.go

    John Howard <******@****.***> 1641342165 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/model/model.go

    }
    
    type ruleList struct {
    	rules []*rule
    }
    
    // Model represents a single rule from an authorization policy. The conditions of the rule are consolidated into
    // permission or principal to align with the Envoy RBAC filter API.
    type Model struct {
    	permissions []ruleList
    	principals  []ruleList
    }
    
    // New returns a model representing a single authorization policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authorization_test.go

    			modes:                []string{modes.ModeAlwaysAllow, modes.ModeAlwaysDeny, modes.ModeABAC},
    			expectErr:            true,
    			expectErrorSubString: "authorization-mode ABAC's authorization policy file not passed",
    		},
    		{
    			name:                 "Authorization Policy file cannot be used without ModeABAC",
    			modes:                []string{modes.ModeAlwaysAllow, modes.ModeAlwaysDeny},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/internal/pkgbits/codes.go

    Matthew Dempsky <******@****.***> 1653076097 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Model.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model;
    
    // TODO:ADAM - Deprecate
    /**
     * A model that is buildable by the Tooling API. Models contain various information regarding the build.
     * Models are typically tailored to a specific domain, for example build environment or IDE.
     *
     * @since 1.0-milestone-8
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 938 bytes
    - Viewed (0)
  7. pilot/pkg/xds/v3/model.go

    package v3
    
    import (
    	"istio.io/istio/pkg/model"
    )
    
    const (
    	ClusterType                = model.ClusterType
    	EndpointType               = model.EndpointType
    	ListenerType               = model.ListenerType
    	RouteType                  = model.RouteType
    	SecretType                 = model.SecretType
    	ExtensionConfigurationType = model.ExtensionConfigurationType
    	NameTableType              = model.NameTableType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/index.go

    func (c byAccessModes) Less(i, j int) bool {
    	return len(c.modes[i]) < len(c.modes[j])
    }
    
    func (c byAccessModes) Swap(i, j int) {
    	c.modes[i], c.modes[j] = c.modes[j], c.modes[i]
    }
    
    func (c byAccessModes) Len() int {
    	return len(c.modes)
    }
    
    func claimToClaimKey(claim *v1.PersistentVolumeClaim) string {
    	return fmt.Sprintf("%s/%s", claim.Namespace, claim.Name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  9. pkg/apis/core/helper/helpers_test.go

    	}
    
    	modes = GetAccessModesFromString("RWO,ROX,RWX,RWOP")
    	if !ContainsAccessMode(modes, core.ReadWriteOnce) {
    		t.Errorf("Expected mode %s, but got %+v", core.ReadWriteOnce, modes)
    	}
    	if !ContainsAccessMode(modes, core.ReadOnlyMany) {
    		t.Errorf("Expected mode %s, but got %+v", core.ReadOnlyMany, modes)
    	}
    	if !ContainsAccessMode(modes, core.ReadWriteMany) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/extra-models.md

    # Extramodelle
    
    Fahren wir beim letzten Beispiel fort. Es gibt normalerweise mehrere zusammengehörende Modelle.
    
    Insbesondere Benutzermodelle, denn:
    
    * Das **hereinkommende Modell** sollte ein Passwort haben können.
    * Das **herausgehende Modell** sollte kein Passwort haben.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top