Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 417 for abde (0.06 sec)

  1. common-protos/k8s.io/api/authorization/v1/generated.proto

    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    // spec.namespace means "in all namespaces".  Self is a special case, because users should always be able
    // to check whether they can perform an action
    message SelfSubjectAccessReview {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    // spec.namespace means "in all namespaces".  Self is a special case, because users should always be able
    // to check whether they can perform an action
    message SelfSubjectAccessReview {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

     * while the {@link #buildAndFail()} method can be used when the build is expected to fail.
     * <p>
     * GradleRunner instances are not thread safe and cannot be used concurrently.
     * However, multiple instances are able to be used concurrently.
     * <p>
     * On Windows, Gradle runner disables file system watching for the executed build, since the Windows watchers add a file lock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. src/internal/concurrent/hashtriemap.go

    	} else {
    		// We possibly need to expand the entry already there into one or more new nodes.
    		//
    		// Publish the node last, which will make both oldEntry and newEntry visible. We
    		// don't want readers to be able to observe that oldEntry isn't in the tree.
    		slot.Store(ht.expand(oldEntry, newEntry, hash, hashShift, i))
    	}
    	return value, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. istioctl/pkg/dashboard/dashboard.go

    			var podName, ns string
    			if labelSelector != "" {
    				pl, err := kubeClient.PodsForSelector(context.TODO(), ctx.NamespaceOrDefault(ctx.Namespace()), labelSelector)
    				if err != nil {
    					return fmt.Errorf("not able to locate pod with selector %s: %v", labelSelector, err)
    				}
    
    				if len(pl.Items) < 1 {
    					return errors.New("no pods found")
    				}
    
    				if len(pl.Items) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/DefaultDependencyCoordinateResolverFactory.java

         * TODO: While this is currently static, we should selectively enable it in order to run
         *       versionMapping tests against both implementations.
         *
         * TODO: Once dependency mapping is stabilized, we should be able to turn this off / remove it entirely
         */
        private static final boolean USE_LEGACY_VERSION_MAPPING = true;
    
        private final ProjectDependencyPublicationResolver projectDependencyResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/obj0.go

    			ABLTZAL,
    			AJAL,
    			obj.ADUFFZERO,
    			obj.ADUFFCOPY:
    			c.cursym.Func().Text.Mark &^= LEAF
    			fallthrough
    
    		case AJMP,
    			ABEQ,
    			ABGEZ,
    			ABGTZ,
    			ABLEZ,
    			ABLTZ,
    			ABNE,
    			ABFPT, ABFPF:
    			if p.As == ABFPT || p.As == ABFPF {
    				// We don't treat ABFPT and ABFPF as branches here,
    				// so that we will always fill nop (0x0) in their
    				// delay slot during assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  8. pkg/testcerts/testcerts.go

    j4C2rMjvTxmkyIcR1uBEeVvuGU8R70nZ1yfo3vDwmNGMcLwW+4QK+WcfwfjLXhLs
    5550arfEYdTzYFMxY60HJT/LvbGrjxY0PQUWWDbPiRfsdRjOFduAbM0/EVRda/Oo
    Fg72WnHeojDUhqEz4UyFZbnRJ4x6leQhnrIcVjWX4FFFktiO9rqqfw==
    -----END CERTIFICATE-----`)
    
    // BadCert is a abd x509 cert. Copied from crypto/x509/x509_test.go:1628
    var BadCert = []byte(`
    -----BEGIN CERTIFICATE-----
    MIIC1jCCAb6gAwIBAgICEjQwDQYJKoZIhvcNAQELBQAwKDEmMCQGA1UEAxMdRW1w
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:03 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    }
    
    // calculatePolicyData calculates the list of policies and bindings for each
    // policy. If there is an error in generation, it will return the error and
    // the partial list of policies that were able to be generated. Policies that
    // have an error will have a non-nil ConfigurationError field, but still be
    // included in the result.
    //
    // This function caches the result of the intermediate compilations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1/types.go

    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    // spec.namespace means "in all namespaces".  Self is a special case, because users should always be able
    // to check whether they can perform an action
    type SelfSubjectAccessReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top