Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 246 for retractions (0.15 sec)

  1. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    # Target Aware Conversion (TAC)
    
    Different hardwares have different capabilities and restrictions.
    
    TAC is designed to leverage hardwares' capabilities to:
    
    *   Perform device-specific optimizations (such as unsupported ops lowering,
        layout transformations, etc.)
    *   Graph partitioning based on the hardware costs modeling.
    *   It supports general import/export where you can hook your own
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // OmitStages is a list of stages for which no events are created. Note that this can also
      // be specified policy wide in which case the union of both are omitted.
      // An empty list means no restrictions will apply.
      // +optional
      // +listType=atomic
      repeated string omitStages = 8;
    
      // OmitManagedFields indicates whether to omit the managed fields of the request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/build.go

    	}
    	m.Versions = v
    	m.Origin = mergeOrigin(m.Origin, origin)
    }
    
    // addRetraction fills in m.Retracted if the module was retracted by its author.
    // m.Error is set if there's an error loading retraction information.
    func addRetraction(ctx context.Context, m *modinfo.ModulePublic) {
    	if m.Version == "" {
    		return
    	}
    
    	err := CheckRetractions(ctx, module.Version{Path: m.Path, Version: m.Version})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    )
    
    // VolumeRestrictions is a plugin that checks volume restrictions.
    type VolumeRestrictions struct {
    	pvcLister    corelisters.PersistentVolumeClaimLister
    	sharedLister framework.SharedLister
    }
    
    var _ framework.PreFilterPlugin = &VolumeRestrictions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (1)
  6. common-protos/k8s.io/api/certificates/v1/generated.proto

      //  2. Permitted subjects: and behavior when a disallowed subject is requested.
      //  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
      //  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    			wantStatus:          nil,
    		},
    		{
    			pod:                 st.MakePod().Volume(volWithNoRestriction).Obj(),
    			nodeInfo:            framework.NewNodeInfo(),
    			name:                "pod with a volume that doesn't have restrictions",
    			preFilterWantStatus: framework.NewStatus(framework.Skip),
    			wantStatus:          nil,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         */
        @Internal
        List<Action<? super Task>> getActions();
    
        /**
         * <p>Sets the sequence of {@link Action} objects which will be executed by this task.</p>
         *
         * @param actions The actions.
         */
        void setActions(List<Action<? super Task>> actions);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	NonResourceURLs []string
    
    	// OmitStages is a list of stages for which no events are created. Note that this can also
    	// be specified policy wide in which case the union of both are omitted.
    	// An empty list means no restrictions will apply.
    	// +optional
    	OmitStages []Stage
    
    	// OmitManagedFields indicates whether to omit the managed fields of the request
    	// and response bodies from being written to the API audit log.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/image/gif/writer.go

    	}
    	e.writeByte(sTrailer)
    	e.flush()
    	return e.err
    }
    
    // Encode writes the Image m to w in GIF format.
    func Encode(w io.Writer, m image.Image, o *Options) error {
    	// Check for bounds and size restrictions.
    	b := m.Bounds()
    	if b.Dx() >= 1<<16 || b.Dy() >= 1<<16 {
    		return errors.New("gif: image is too large to encode")
    	}
    
    	opts := Options{}
    	if o != nil {
    		opts = *o
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top