Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 217 for Potato (0.14 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/internal/ModifierStubs.java

            final String testData;
    
            // This is still ambiguous and will require the @Inject annotation to be fixed
            PackagePrivateConstructorWithPrivateConstructor() {
                this("Potato");
            }
    
            private PackagePrivateConstructorWithPrivateConstructor(String testData) {
                this.testData = testData;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

        route:
        - destination:
            host: sample.foo.svc.cluster.local
      - name: send /api/v1/products and /potato to sample.bar
        match:
        - name: prefix /api/v1/products
          uri:
            prefix: /api/v1/products
        - name: prefix /potato
          uri:
            prefix: /potato
        route:
        - destination:
            host: sample.bar.svc.cluster.local
            subset: v1
    ---
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/AccessModifierDefaultServiceRegistryTest.groovy

        def "can add type to registry that has package private constructor"() {
            when:
            def registry = new DefaultServiceRegistry()
            registry.register {
                it.add(String, "Potato")
                it.add(ModifierStubs.PackagePrivateConstructor)
            }
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    	{Value: &Plain{[]byte("</>")}, ExpectXML: `<Plain><V>&lt;/&gt;</V></Plain>`},
    	{Value: &Plain{[3]byte{'<', '/', '>'}}, ExpectXML: `<Plain><V>&lt;/&gt;</V></Plain>`},
    	{Value: &Plain{NamedType("potato")}, ExpectXML: `<Plain><V>potato</V></Plain>`},
    	{Value: &Plain{[]int{1, 2, 3}}, ExpectXML: `<Plain><V>1</V><V>2</V><V>3</V></Plain>`},
    	{Value: &Plain{[3]int{1, 2, 3}}, ExpectXML: `<Plain><V>1</V><V>2</V><V>3</V></Plain>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"post_office":                          "\U0001f3e3",
    	"postal_horn":                          "\U0001f4ef",
    	"postbox":                              "\U0001f4ee",
    	"potable_water":                        "\U0001f6b0",
    	"potato":                               "\U0001f954",
    	"potted_plant":                         "\U0001fab4",
    	"pouch":                                "\U0001f45d",
    	"poultry_leg":                          "\U0001f357",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/rotate.go

    // 0xf0_00_00_00_00_00_00_0f | 60    | 3
    //
    // The Amount value represents the amount to rotate the
    // input left by. Note that this rotation is performed
    // before the masked region is used.
    type RotateParams struct {
    	Start  uint8 // big-endian start bit index [0..63]
    	End    uint8 // big-endian end bit index [0..63]
    	Amount uint8 // amount to rotate left
    }
    
    // NewRotateParams creates a set of parameters representing a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 21 19:19:04 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  7. test/rotate.go

    // skip
    
    // NOTE: the actual tests to run are rotate[0123].go
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generate test of shift and rotate by constants.
    // The output is compiled and run.
    //
    // The integer type depends on the value of mode (rotate direction,
    // signedness).
    
    package main
    
    import (
    	"bufio"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.3K bytes
    - Viewed (0)
  8. test/codegen/rotate.go

    	return a
    }
    
    // Issue 18254: rotate after inlining
    func f32(x uint32) uint32 {
    	// amd64:"ROLL\t[$]7"
    	return rot32nc(x, 7)
    }
    
    func doubleRotate(x uint64) uint64 {
    	x = (x << 5) | (x >> 59)
    	// amd64:"ROLQ\t[$]15"
    	// arm64:"ROR\t[$]49"
    	x = (x << 10) | (x >> 54)
    	return x
    }
    
    // --------------------------------------- //
    //    Combined Rotate + Masking operations //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	// a copy of root cert from config map for verification.
    	certItem0 := loadCert(rotator)
    
    	// Change grace period percentage to 100, so that root cert is guarantee to rotate.
    	rotator.config.certInspector = certutil.NewCertUtil(100)
    	// Rotate the root certificate now.
    	rotator.checkAndRotateRootCert()
    	certItem1 := loadCert(rotator)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	}
    	return rotator
    }
    
    // Run refreshes root certs and updates config map accordingly.
    func (rotator *SelfSignedCARootCertRotator) Run(stopCh chan struct{}) {
    	if rotator.config.enableJitter {
    		rootCertRotatorLog.Infof("Jitter is enabled, wait %s before "+
    			"starting root cert rotator.", rotator.backOffTime.String())
    		select {
    		case <-time.After(rotator.backOffTime):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top