Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 7,778 for creat (0.12 sec)

  1. docs/en/docs/tutorial/security/first-steps.md

    This parameter doesn't create that endpoint / *path operation*, but declares that the URL `/token` will be the one that the client should use to get the token. That information is used in OpenAPI, and then in the interactive API documentation systems.
    
    We will soon also create the actual path operation.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_block.go

    		}
    	}
    
    	// Creating a stagingPath directory before call to NodeStageVolume
    	if err := os.MkdirAll(stagingPath, 0750); err != nil {
    		return "", errors.New(log("blockMapper.stageVolumeForBlock failed to create dir %s: %v", stagingPath, err))
    	}
    	klog.V(4).Info(log("blockMapper.stageVolumeForBlock created stagingPath directory successfully [%s]", stagingPath))
    
    	// Request to stage a block volume to stagingPath.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/path-params.md

    ### Crea una clase `Enum`
    
    Importa `Enum` y crea una sub-clase que herede desde `str` y desde `Enum`.
    
    Al heredar desde `str` la documentación de la API podrá saber que los valores deben ser de tipo `string` y podrá mostrarlos correctamente.
    
    Luego crea atributos de clase con valores fijos, que serán los valores disponibles válidos:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/BenchmarkHelpers.java

          }
        },
        LinkedHashMultisetImpl {
          @Override
          public <E extends Comparable<E>> Multiset<E> create(Collection<E> contents) {
            return LinkedHashMultiset.create(contents);
          }
        },
        ConcurrentHashMultisetImpl {
          @Override
          public <E extends Comparable<E>> Multiset<E> create(Collection<E> contents) {
            return ConcurrentHashMultiset.create(contents);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 04 04:06:35 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules_test.go

    				a("g", "v", "r", "exec", "name", admission.Create, &metav1.CreateOptions{}),
    				a("2", "v", "r2", "proxy", "name", admission.Create, &metav1.CreateOptions{}),
    				a("2", "v", "r3", "proxy", "name", admission.Create, &metav1.CreateOptions{}),
    			),
    			noMatch: attrList(
    				a("g", "v", "r", "", "name", admission.Create, &metav1.CreateOptions{}),
    				a("2", "v", "r2", "", "name", admission.Create, &metav1.CreateOptions{}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 23:28:16 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

                ContiguousSet.create(Range.closed(1, 3), integers()),
                ContiguousSet.closed(1, 3),
                ContiguousSet.create(Range.closedOpen(1, 4), integers()),
                ContiguousSet.closedOpen(1, 4),
                ContiguousSet.create(Range.openClosed(0, 3), integers()),
                ContiguousSet.create(Range.open(0, 4), integers()),
                ContiguousSet.create(Range.closed(1, 3), NOT_EQUAL_TO_INTEGERS),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics_test.go

    	Metrics.ObserveMatchConditionEvalError(context.TODO(), "x", kindWebhook, stepValidate, string(admission.Create))
    	Metrics.ObserveMatchConditionEvalError(context.TODO(), "x", kindPolicy, stepAdmit, string(admission.Create))
    	Metrics.ObserveMatchConditionEvalError(context.TODO(), "x", kindPolicy, stepValidate, string(admission.Create))
    	wantLabelsCounterPolicyAdmit := map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:37 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

        Multiset<String> ms1 = HashMultiset.create();
        Multiset<String> ms2 = HashMultiset.create(Arrays.asList("a", "b", "a"));
        assertEquals(ms2, Multisets.union(ms1, ms2));
      }
    
      public void testUnionNonemptyEmpty() {
        Multiset<String> ms1 = HashMultiset.create(Arrays.asList("a", "b", "a"));
        Multiset<String> ms2 = HashMultiset.create();
        assertEquals(ms1, Multisets.union(ms1, ms2));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/modelRules/modelDsl/groovy/build.gradle

                }
            }
        }
    // tag::create-rule-no-config[]
    // tag::configure-rule[]
    // tag::create-rule[]
    // tag::managed-type-nested-config-rule[]
    }
    // end::create-rule[]
    // end::create-rule-no-config[]
    // end::configure-rule[]
    // end::rule-inputs[]
    // end::managed-type-nested-config-rule[]
    
    // tag::model-map-nested-configure-rule[]
    // tag::model-map-nested-create-rule[]
    // tag::model-map-all-rule[]
    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

                    }
                }
    
                extensions.create("thing", Thing, "a", "b", "c")
            """
    
            expect:
            fails()
            failure.assertHasCause("Could not create an instance of type Thing.")
            failure.assertHasCause("Too many parameters provided for constructor for type Thing. Expected 2, received 3.")
        }
    
        def "can create instance of interface with mutable property of type #type"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K bytes
    - Viewed (0)
Back to top