Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for getCaches (0.36 sec)

  1. pkg/volume/volume.go

    type CustomBlockVolumeUnmapper interface {
    	BlockVolumeUnmapper
    	// TearDownDevice removes traces of the SetUpDevice procedure.
    	// If the plugin is non-attachable, this method detaches the volume
    	// from a node.
    	TearDownDevice(mapPath string, devicePath string) error
    
    	// UnmapPodDevice removes traces of the MapPodDevice procedure.
    	UnmapPodDevice() error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry.go

    						key := metricProviderModeKey(provider, mode)
    						disabledAllMetricsProviders.Insert(key)
    					}
    
    					continue
    				}
    
    				metricsNames := getMatches(o.GetMatch())
    				// If client or server is set explicitly, only apply there. Otherwise, we will apply to both.
    				// Note: client and server keys may end up the same, which is fine
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    			Never := func(echo.Instance, echo.CallOptions) bool {
    				return false
    			}
    			SameNetwork := func(from echo.Instance, to echo.Target) echo.Instances {
    				return match.Network(from.Config().Cluster.NetworkName()).GetMatches(to.Instances())
    			}
    			SupportsHBone := func(from echo.Instance, opts echo.CallOptions) bool {
    				if !from.Config().IsUncaptured() && !opts.To.Config().IsUncaptured() {
    					return true
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

            String version = artifact.getVersion();
    
            VersionResult result = new VersionResult(request);
    
            Key cacheKey = null;
            RepositoryCache cache = session.getCache();
            if (cache != null && !ConfigUtils.getBoolean(session, false, "aether.versionResolver.noCache")) {
                cacheKey = new Key(session, request);
    
                Object obj = cache.get(session, cacheKey);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. cmd/admin-handlers-idp-ldap.go

    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	writeSuccessResponseJSON(w, econfigData)
    }
    
    // AttachDetachPolicyLDAP attaches or detaches policies from an LDAP entity
    // (user or group).
    //
    // POST <admin-prefix>/idp/ldap/policy/{operation}
    func (a adminAPIHandlers) AttachDetachPolicyLDAP(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    		for _, tt := range svcCases {
    			tt, client := tt, client
    			aInCluster := match.Cluster(client.Config().Cluster).GetMatches(t.Apps.A)
    			if len(aInCluster) == 0 {
    				// The cluster doesn't contain A, but connects to a cluster containing A
    				aInCluster = match.Cluster(client.Config().Cluster.Config()).GetMatches(t.Apps.A)
    			}
    			address := aInCluster[0].Config().ClusterLocalFQDN() + "?"
    			if tt.protocol != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. pkg/volume/fc/fc.go

    	*fcDisk
    	mounter    mount.Interface
    	deviceUtil util.DeviceUtil
    	exec       utilexec.Interface
    }
    
    var _ volume.Unmounter = &fcDiskUnmounter{}
    
    // Unmounts the bind mount, and detaches the disk only if the disk
    // resource was the last reference to that disk on the kubelet.
    func (c *fcDiskUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    	node, err := rc.nodeLister.Get(string(nodeName))
    	if err != nil {
    		return false, err
    	}
    	return nodeutil.IsNodeReady(node), nil
    }
    
    func (rc *reconciler) reconcile(ctx context.Context) {
    	// Detaches are triggered before attaches so that volumes referenced by
    	// pods that are rescheduled to a different node are detached first.
    
    	// Ensure volumes that should be detached are detached.
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pkg/volume/iscsi/iscsi.go

    	*iscsiDisk
    	mounter    mount.Interface
    	exec       utilexec.Interface
    	deviceUtil ioutil.DeviceUtil
    }
    
    var _ volume.Unmounter = &iscsiDiskUnmounter{}
    
    // Unmounts the bind mount, and detaches the disk only if the disk
    // resource was the last reference to that disk on the kubelet.
    func (c *iscsiDiskUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    include::sample[dir="snippets/antMigration/importBuild/groovy",files="build.gradle[tags=task-dependencies]"]
    ====
    <1> Makes compilation depend on the `prepare` task
    <2> Detaches `package` from the `ant_build` task and makes it depend on `compileJava`
    <3> Detaches `assemble` from the standard Gradle `jar` task and makes it depend on `package` instead
    
    These four steps will successfully replace the old Ant compilation with the Gradle implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top