Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 111 for natures (0.34 sec)

  1. pkg/features/kube_features.go

    limitations under the License.
    */
    
    package features
    
    import (
    	apiextensionsfeatures "k8s.io/apiextensions-apiserver/pkg/features"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	genericfeatures "k8s.io/apiserver/pkg/features"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	clientfeatures "k8s.io/client-go/features"
    	"k8s.io/component-base/featuregate"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/build.gradle.kts

        id("gradlebuild.jmh")
    }
    
    description = "A set of generic services and utilities."
    
    gradlebuildJava.usedInWorkers()
    
    /**
     * Use Java 8 compatibility for Unit tests, so we can test Java 8 features as well
     */
    tasks.named<JavaCompile>("compileTestJava") {
        options.release = 8
    }
    
    /**
     * Use Java 8 compatibility for JMH benchmarks
     */
    tasks.named<JavaCompile>("jmhCompileGeneratedClasses") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    	"google.golang.org/protobuf/types/known/structpb"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/networking/util"
    	networkutil "istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      }
    
      public void testToString_cancelled() throws Exception {
        assertThat(Futures.immediateCancelledFuture().toString())
            .matches("[^\\[]+\\[status=CANCELLED\\]");
      }
    
      public void testToString_failed() {
        assertThat(Futures.immediateFailedFuture(new RuntimeException("foo")).toString())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  5. manifests/addons/values-grafana.yaml

    # Avoid creating a bunch of RBAC rules for features we are not enabling
    rbac:
      create: false
      pspEnabled: false
    
    # Disable test pods
    testFramework:
      enabled: false
    
    podLabels:
      sidecar.istio.io/inject: "false"
    
    # Demo only, so we will have no authentication
    admin:
      existingSecret: ""
    ldap:
      existingSecret: true
    env:
      GF_SECURITY_ADMIN_USER: "admin"
      GF_SECURITY_ADMIN_PASSWORD: "admin"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    				resources = append(resources, patched)
    				if features.EnableCDSCaching {
    					cb.cache.Add(&clusterKey, cb.req, patched)
    				}
    			}
    			for _, ss := range subsetClusters {
    				if patched := cp.patch(nil, ss); patched != nil {
    					resources = append(resources, patched)
    					if features.EnableCDSCaching {
    						nk := clusterKey
    						nk.clusterName = ss.Name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. platforms/software/testing-base/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Basic testing related plugins, which establish conventions for testing output directories,
    and setup basic testing-related features like a testSuites container and the testing extension.  It provides most of the
    testing-related abstract base types and interfaces for things like Test tasks, listeners and filters.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// and disable sendingInitialEvents when the feature wasn't enabled
    	if !utilfeature.DefaultFeatureGate.Enabled(features.WatchList) && opts.SendInitialEvents != nil {
    		opts.SendInitialEvents = nil
    	}
    	// TODO: we should eventually get rid of this legacy case
    	if utilfeature.DefaultFeatureGate.Enabled(features.WatchFromStorageWithoutResourceVersion) && opts.SendInitialEvents == nil && opts.ResourceVersion == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	}
    	return list, false
    }
    
    func isPodFailed(p *v1.Pod, job *batch.Job) bool {
    	if feature.DefaultFeatureGate.Enabled(features.PodDisruptionConditions) && feature.DefaultFeatureGate.Enabled(features.JobPodFailurePolicy) && job.Spec.PodFailurePolicy != nil {
    		// When PodDisruptionConditions is enabled, orphan Pods and unschedulable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/istio_ca.go

    		if _, err := os.Stat(path.Join(LocalCertDir.Get(), ca.IstioGenerated)); err == nil {
    			istioGenerated = true
    		}
    	}
    
    	if !detectedSigningCABundle || (features.UseCacertsForSelfSignedCA && istioGenerated) {
    		if features.UseCacertsForSelfSignedCA && istioGenerated {
    			log.Infof("IstioGenerated %s secret found, use it as the CA certificate", ca.CACertsSecret)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top