Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for Potato (0.19 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/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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/ssa/rewrite_test.go

    	}
    
    	for i, v := range tests {
    		result := encodePPC64RotateMask(v.rotate, int64(v.mask), v.nbits)
    		if result != v.encoded {
    			t.Errorf("encodePPC64RotateMask(%d,0x%x,%d) = 0x%x, expected 0x%x", v.rotate, v.mask, v.nbits, result, v.encoded)
    		}
    		rotate, mb, me, mask := DecodePPC64RotateMask(result)
    		if rotate != v.rotate || mb != v.mb || me != v.me || mask != v.mask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 21:57:02 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue36259.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func rotate(s []int, m int) {
        l := len(s)
        m = m % l
        buf := make([]int, m)
    
        copy(buf, s)
        copy(s, s[m:])
        copy(s[l-m:], buf)
    }
    
    func main() {
        a0 := [...]int{1,2,3,4,5}
        println(a0[0])
    
        rotate(a0[:], 1)
        println(a0[0])
    
        rotate(a0[:], -3)
        println(a0[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 24 20:23:14 UTC 2020
    - 483 bytes
    - Viewed (0)
  9. src/net/dnsconfig.go

    }
    
    // serverOffset returns an offset that can be used to determine
    // indices of servers in c.servers when making queries.
    // When the rotate option is enabled, this offset increases.
    // Otherwise it is always 0.
    func (c *dnsConfig) serverOffset() uint32 {
    	if c.rotate {
    		return atomic.AddUint32(&c.soffset, 1) - 1 // return 0 to start
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/filewatcher/filewatcher_test.go

    	events1 := w.Events(watchFile1)
    	g.Expect(events1).NotTo(BeNil())
    	events2 := w.Events(watchFile2)
    	g.Expect(events2).NotTo(BeNil())
    
    	errors1 := w.Errors(watchFile1)
    	g.Expect(errors1).NotTo(BeNil())
    	errors2 := w.Errors(watchFile2)
    	g.Expect(errors2).NotTo(BeNil())
    
    	// Validate Remove behavior
    	err = w.Remove(watchFile1)
    	g.Expect(err).NotTo(HaveOccurred())
    	events1 = w.Events(watchFile1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top