Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for gretty (0.23 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                "uniqueItems": true
              }
            },
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            }
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

          <organization>ASF</organization>
          <roles>
            <role>PMC Chair</role>
          </roles>
          <timezone>-5</timezone>
        </developer>
        <developer>
          <id>brett</id>
          <name>Brett Porter</name>
          <email>brett@apache.org</email>
          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
          <timezone>+10</timezone>
        </developer>
        <developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds_test.go

    			tt.resourceExpirationEvaluator.RemoveDeletedKinds("group.name", convertor, tt.versionedResourcesStorageMap)
    			if !reflect.DeepEqual(tt.expectedStorage, tt.versionedResourcesStorageMap) {
    				t.Fatal(dump.Pretty(tt.versionedResourcesStorageMap))
    			}
    		})
    	}
    }
    
    func Test_shouldRemoveResource(t *testing.T) {
    	tests := []struct {
    		name              string
    		resourcesToRemove sets.String
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                tasks.register("greet", MyTask) {
                    greeting = greetValueSource
                }
            """)
    
            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateStored()
            output.contains("Hello!")
    
            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    func getFinalConfigMaps(t *testing.T, client *fake.Clientset) (map[string]*corev1.ConfigMap, bool) {
    	ret := map[string]*corev1.ConfigMap{}
    	created := false
    
    	for _, action := range client.Actions() {
    		t.Log(dump.Pretty(action))
    		if action.Matches("create", "configmaps") {
    			created = true
    			obj := action.(clienttesting.CreateAction).GetObject().(*corev1.ConfigMap)
    			ret[obj.Name] = obj
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/apiserver.go

    		return nil, err
    	}
    
    	crdClient, err := clientset.NewForConfig(s.GenericAPIServer.LoopbackClientConfig)
    	if err != nil {
    		// it's really bad that this is leaking here, but until we can fix the test (which I'm pretty sure isn't even testing what it wants to test),
    		// we need to be able to move forward
    		return nil, fmt.Errorf("failed to create clientset: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 14:31:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

      /** The type of the parameters depends on the algorithm that precedes it. */
      private val algorithmParameters: DerAdapter<Any?> =
        Adapters.usingTypeHint { typeHint ->
          when (typeHint) {
            // This type is pretty strange. The spec says that for certain algorithms we must encode null
            // when it is present, and for others we must omit it!
            // https://tools.ietf.org/html/rfc4055#section-2.1
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                return expression.substring(start, idx);
            }
    
            public int getPosition() {
                return idx < expression.length() ? idx : EOF;
            }
    
            // to make tokenizer look pretty in debugger
            @Override
            public String toString() {
                return idx < expression.length() ? expression.substring(idx) : "<EOF>";
            }
        }
    
        private ReflectionValueExtractor() {}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "preemption_victims",
    			Help:      "Number of selected preemption victims",
    			// we think #victims>64 is pretty rare, therefore [64, +Inf) is considered a single bucket.
    			Buckets:        metrics.ExponentialBuckets(1, 2, 7),
    			StabilityLevel: metrics.STABLE,
    		})
    	PreemptionAttempts = metrics.NewCounter(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

    // (2) Allows for the fast simulation of changes to the peak memory requirement
    //     under rematerialization of intermediate results in the graph
    // (3) Implements a greedy algorithm for finding rematerializations of
    //     intermediate results in that graph to lower peak memory requirements.
    class Rematerializer {
     public:
      Rematerializer() = default;
      virtual ~Rematerializer() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top