Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for GETs (0.05 sec)

  1. pkg/kubelet/kuberuntime/security_context.go

    	v1 "k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	runtimeutil "k8s.io/kubernetes/pkg/kubelet/kuberuntime/util"
    	"k8s.io/kubernetes/pkg/securitycontext"
    )
    
    // determineEffectiveSecurityContext gets container's security context from v1.Pod and v1.Container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            configurationFactory,
            Mock(ResolutionStrategyFactory)
        )
    
        def setup() {
            metadataBuilder.withConfigurationsProvider(_) >> metadataBuilder
        }
    
        def "adds and gets"() {
            1 * domainObjectContext.identityPath("compile") >> Path.path(":build:compile")
            1 * domainObjectContext.projectPath("compile") >> Path.path(":compile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/configdump.go

    	err := json.Unmarshal(b, rawDump)
    	if err != nil {
    		return fmt.Errorf("error unmarshalling config dump response from ztunnel: %v", err)
    	}
    	// ensure that data gets unmarshalled into the right data type
    	if err := unmarshalListOrMap(rawDump.Services, &zDump.Services); err != nil {
    		return err
    	}
    	if err := unmarshalListOrMap(rawDump.Workloads, &zDump.Workloads); err != nil {
    		return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/kubelet/util/swap/swap_util.go

    		}
    
    		return true
    	}
    
    	tmpfsNoswapOptionAvailabilityOnce.Do(func() {
    		tmpfsNoswapOptionSupported = isTmpfsNoswapOptionSupportedHelper()
    	})
    
    	return tmpfsNoswapOptionSupported
    }
    
    // gets /proc/swaps's content as an input, returns true if swap is enabled.
    func isSwapOnAccordingToProcSwaps(procSwapsContent []byte) bool {
    	procSwapsContent = bytes.TrimSpace(procSwapsContent) // extra trailing \n
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/default_storage_factory_builder.go

    	resources := []schema.GroupVersionResource{
    		// If a resource has to be stored in a version that is not the
    		// latest, then it can be listed here. Usually this is the case
    		// when a new version for a resource gets introduced and a
    		// downgrade to an older apiserver that doesn't know the new
    		// version still needs to be supported for one release.
    		//
    		// Example from Kubernetes 1.24 where csistoragecapacities had just
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/internal/goexperiment/flags.go

    	// When this experiment is enabled, cgo rule checks occur regardless
    	// of the GODEBUG=cgocheck setting provided at runtime.
    	CgoCheck2 bool
    
    	// LoopVar changes loop semantics so that each iteration gets its own
    	// copy of the iteration variable.
    	LoopVar bool
    
    	// CacheProg adds support to cmd/go to use a child process to implement
    	// the build cache; see https://github.com/golang/go/issues/59719.
    	CacheProg bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/clusters.go

    	}, exclude(excluded...))
    }
    
    // IsExternalControlPlane indicates whether the clusters are set up in an enternal
    // control plane configuration. An external control plane is a primary cluster that
    // gets its Istio configuration from a different cluster.
    func (c Clusters) IsExternalControlPlane() bool {
    	for _, cc := range c {
    		if cc.IsExternalControlPlane() {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/runtime/lock_futex.go

    	// on this mutex. If we ever change l->key from
    	// MUTEX_SLEEPING to some other value, we must be
    	// careful to change it back to MUTEX_SLEEPING before
    	// returning, to ensure that the sleeping thread gets
    	// its wakeup call.
    	wait := v
    
    	timer := &lockTimer{lock: l}
    	timer.begin()
    	// On uniprocessors, no point spinning.
    	// On multiprocessors, spin for ACTIVE_SPIN attempts.
    	spin := 0
    	if ncpu > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/IoTestCase.java

        if (!tempFile.delete() || !tempFile.mkdir()) {
          throw new IOException("failed to create temp dir");
        }
        filesToDelete.add(tempFile);
        return tempFile;
      }
    
      /**
       * Gets a temp dir for testing. The returned directory and all contents of it will be deleted in
       * the tear-down for this test. Subsequent invocations of this method will return the same
       * directory.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/plugins.go

    	allPlugins = append(allPlugins, iscsi.ProbeVolumePlugins()...)
    	allPlugins = append(allPlugins, csi.ProbeVolumePlugins()...)
    	return allPlugins, nil
    }
    
    // GetDynamicPluginProber gets the probers of dynamically discoverable plugins
    // for the attach/detach controller.
    // Currently only Flexvolume plugins are dynamically discoverable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top