Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 155 for gretty (0.16 sec)

  1. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    				t.Errorf("Test %q: %d unexpected actions: %+v", test.name, len(actions)-len(test.expectedActions), dump.Pretty(actions[i:]))
    				break
    			}
    
    			expectedAction := test.expectedActions[i]
    			if !reflect.DeepEqual(expectedAction, action) {
    				t.Errorf("Test %q: action %d\nExpected:\n%s\ngot:\n%s", test.name, i, dump.Pretty(expectedAction), dump.Pretty(action))
    			}
    		}
    
    		if len(test.expectedActions) > len(actions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. pkg/config/model.go

    }
    
    func ToJSON(s Spec) ([]byte, error) {
    	return toJSON(s, false)
    }
    
    func ToPrettyJSON(s Spec) ([]byte, error) {
    	return toJSON(s, true)
    }
    
    func toJSON(s Spec, pretty bool) ([]byte, error) {
    	indent := ""
    	if pretty {
    		indent = "    "
    	}
    
    	// golang protobuf. Use protoreflect.ProtoMessage to distinguish from gogo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. cni/README.md

    [containernetworking sample plugin](https://github.com/containernetworking/plugins/tree/main/plugins/sample)
    
    The details for the deployment & installation of this plugin were pretty much lifted directly from the
    [Calico CNI plugin](https://github.com/projectcalico/cni-plugin).
    
    Specifically:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/fmt/example_test.go

    	// Arrays and slices are formatted by applying the format to each element.
    	greats := [5]string{"Kitano", "Kobayashi", "Kurosawa", "Miyazaki", "Ozu"}
    	fmt.Printf("%v %q\n", greats, greats)
    	// Result: [Kitano Kobayashi Kurosawa Miyazaki Ozu] ["Kitano" "Kobayashi" "Kurosawa" "Miyazaki" "Ozu"]
    
    	kGreats := greats[:3]
    	fmt.Printf("%v %q %#v\n", kGreats, kGreats, kGreats)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  5. istioctl/pkg/tag/generate.go

    	deserializer := codecFactory.UniversalDeserializer()
    	serializer := json.NewSerializerWithOptions(
    		json.DefaultMetaFactory, nil, nil, json.SerializerOptions{
    			Yaml:   true,
    			Pretty: true,
    			Strict: true,
    		})
    
    	whObject, _, err := deserializer.Decode([]byte(validatingWebhookYAML), nil, &admitv1.ValidatingWebhookConfiguration{})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/4/maven-parent-4.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
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/util.go

    	RBaseS390X   = 14 * 1024 // range [14k, 15k)
    	RBaseRISCV   = 15 * 1024 // range [15k, 16k)
    	RBaseWasm    = 16 * 1024
    	RBaseLOONG64 = 17 * 1024
    )
    
    // RegisterRegister binds a pretty-printer (Rconv) for register
    // numbers to a given register number range. Lo is inclusive,
    // hi exclusive (valid registers are lo through hi-1).
    func RegisterRegister(lo, hi int, Rconv func(int) string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

                    // by dependency-level attributes. This should really belong to a different test
                    // but since integration tests are pretty slow we do both in one go, knowing that
                    // configuration-level already has its own test
                    conf.attributes.attribute(quality, 'boo')
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    // a NegotiatedSerializer.
    type ClientNegotiator interface {
    	// Encoder returns the appropriate encoder for the provided contentType (e.g. application/json)
    	// and any optional mediaType parameters (e.g. pretty=1), or an error. If no serializer is found
    	// a NegotiateError will be returned. The current client implementations consider params to be
    	// optional modifiers to the contentType and will ignore unrecognized parameters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/4/maven-parent-4.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: Sat Nov 09 12:45:14 UTC 2019
    - 9.8K bytes
    - Viewed (0)
Back to top