Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 103 for plugin1 (0.12 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if imageCredentialProviderConfigFile != "" || imageCredentialProviderBinDir != "" {
    		if err := plugin.RegisterCredentialProviderPlugins(imageCredentialProviderConfigFile, imageCredentialProviderBinDir); err != nil {
    			klog.ErrorS(err, "Failed to register CRI auth plugins")
    			os.Exit(1)
    		}
    	}
    	kubeRuntimeManager.keyring = credentialprovider.NewDockerKeyring()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    	// 3.1 Validate that the client from STS creds cannot upload any object as
    	// it is denied by the plugin.
    	c.mustNotUpload(ctx, s.getUserClient(c, cr.AccessKey, cr.SecretKey, ""), bucket)
    
    	// Check that session policies do not apply - as policy enforcement is
    	// delegated to plugin.
    	{
    		svcAK, svcSK := mustGenerateCredentials(c)
    
    		// This policy does not allow listing objects.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

    * LBaaS v2 Support for Openstack Cloud Provider Plugin ([#25987](https://github.com/kubernetes/kubernetes/pull/25987), [@dagnello](https://github.com/dagnello))
    * GCI: add support for network plugin ([#27027](https://github.com/kubernetes/kubernetes/pull/27027), [@andyzheng0831](https://github.com/andyzheng0831))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	// RBD is used for the nonmigrated case, as its featuregate is still alpha. When RBD migration goes GA,
    	// a different nonmigrated plugin should be used instead. If there are no other plugins, then the
    	// nonmigrated test case is no longer relevant and can be removed.
    	if migrationEnabled {
    		pv.Spec.PersistentVolumeSource = v1.PersistentVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.internal.DynamicObjectAware;
    import org.gradle.api.internal.IConventionAware;
    import org.gradle.api.internal.plugins.software.SoftwareType;
    import org.gradle.api.plugins.ExtensionAware;
    import org.gradle.api.provider.HasMultipleValues;
    import org.gradle.api.provider.ListProperty;
    import org.gradle.api.provider.MapProperty;
    import org.gradle.api.provider.Property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  6. plugin/pkg/admission/limitranger/admission_test.go

    		if !apiequality.Semantic.DeepEqual(expected, actual) {
    			t.Errorf("pod %v, expected != actual; %v != %v", pod.Name, expected, actual)
    		}
    	}
    	verifyAnnotation(t, &pod, "LimitRanger plugin set: cpu, memory request for container foo-0; cpu, memory limit for container foo-0")
    
    	// pod with some resources enumerated should only merge empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

        const TF_DeviceList* list, int index, TF_Status* status);
    
    // --------------------------------------------------------------------------
    // Load plugins containing custom ops and kernels
    
    // TF_Library holds information about dynamically loaded TensorFlow plugins.
    typedef struct TF_Library TF_Library;
    
    // Load the library specified by library_filename and register the ops and
    // kernels present in that library.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks
    
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.api.plugins.ExtensionAware
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    	_ "k8s.io/klog/v2/ktesting/init"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	plfeature "k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	plugintesting "k8s.io/kubernetes/pkg/scheduler/framework/plugins/testing"
    	"k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    	"k8s.io/kubernetes/pkg/scheduler/internal/cache"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    	if err != nil {
    		return nil, err
    	}
    
    	mounter := mount.New(s.ExperimentalMounterPath)
    	subpather := subpath.New(mounter)
    	hu := hostutil.NewHostUtil()
    	pluginRunner := exec.New()
    
    	plugins, err := ProbeVolumePlugins(featureGate)
    	if err != nil {
    		return nil, err
    	}
    	var tp oteltrace.TracerProvider
    	tp = noopoteltrace.NewTracerProvider()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top