Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for FX (0.02 sec)

  1. test/ken/sliceslice.go

    	// width 4 (float64)
    	lb = 0
    	hb = 10
    	fy = fx[lb:hb]
    	tstf()
    	fy = fx[lb:10]
    	tstf()
    	fy = fx[lb:]
    	tstf()
    	fy = fx[:hb]
    	tstf()
    	fy = fx[0:hb]
    	tstf()
    	fy = fx[0:10]
    	tstf()
    	fy = fx[0:]
    	tstf()
    	fy = fx[:10]
    	tstf()
    	fy = fx[:]
    	tstf()
    
    	lb = 2
    	hb = 10
    	fy = fx[lb:hb]
    	tstf()
    	fy = fx[lb:10]
    	tstf()
    	fy = fx[lb:]
    	tstf()
    	fy = fx[2:hb]
    	tstf()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    // LDS/RDS.
    func (fx *Updater) SvcUpdate(c model.ShardKey, hostname string, ns string, ev model.Event) {
    	select {
    	case fx.Events <- Event{Type: "service", ID: hostname, Namespace: ns}:
    	default:
    	}
    	if fx.Delegate != nil {
    		fx.Delegate.SvcUpdate(c, hostname, ns, ev)
    	}
    }
    
    func (fx *Updater) RemoveShard(shardKey model.ShardKey) {
    	select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. test/ken/slicearray.go

    	lb = 0
    	hb = 10
    	fy = fx[lb:hb]
    	tstf()
    	fy = fx[lb:10]
    	tstf()
    	fy = fx[lb:]
    	tstf()
    	fy = fx[:hb]
    	tstf()
    	fy = fx[0:hb]
    	tstf()
    	fy = fx[0:10]
    	tstf()
    	fy = fx[0:]
    	tstf()
    	fy = fx[:10]
    	tstf()
    	fy = fx[:]
    	tstf()
    
    	lb = 2
    	hb = 10
    	fy = fx[lb:hb]
    	tstf()
    	fy = fx[lb:10]
    	tstf()
    	fy = fx[lb:]
    	tstf()
    	fy = fx[2:hb]
    	tstf()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Dec 05 12:50:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/fake.go

    		clienttest.MakeCRD(t, c.client, crd)
    	}
    	opts.Client.RunAndWait(c.stop)
    	var fx *xdsfake.Updater
    	if x, ok := xdsUpdater.(*xdsfake.Updater); ok {
    		fx = x
    	}
    
    	if !opts.SkipRun {
    		go c.Run(c.stop)
    		kubelib.WaitForCacheSync("test", c.stop, c.HasSynced)
    	}
    
    	return &FakeController{Controller: c, Endpoints: endpoints}, fx
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue6703b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check for cycles in a function call.
    
    package funccall
    
    func fx() int {
    	_ = x
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 335 bytes
    - Viewed (0)
  6. test/fixedbugs/issue6703a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check for cycles in a function value.
    
    package funcvalue
    
    func fx() int {
    	_ = x
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 335 bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestEndpointSliceFromMCSShouldBeIgnored(t *testing.T) {
    	const (
    		ns      = "nsa"
    		svcName = "svc1"
    		appName = "prod-app"
    	)
    
    	controller, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    
    	node := generateNode("node1", map[string]string{
    		NodeZoneLabel:              "zone1",
    		NodeRegionLabel:            "region1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

        def nonExistent = temporaryFolder.file("non-existent")
    
        def setup() {
            candidates.createDir("11.0.6.hs-adpt")
            candidates.createDir("14")
            otherCandidates.createDir("8.0.262.fx-librca")
        }
    
        def "supplies no installations non-linux operating system"() {
            given:
            def supplier = new LinuxInstallationSupplier(OperatingSystem.WINDOWS, candidates)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JabbaInstallationSupplierTest.groovy

            given:
            def expectedLocation1 = candidates.createDir("jdk/11.0.6.hs-adpt")
            def expectedLocation2 = candidates.createDir("jdk/14")
            def expectedLocation3 = candidates.createDir("jdk/8.0.262.fx-librca")
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 3
            directories*.location.containsAll(expectedLocation1, expectedLocation2, expectedLocation3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/SdkmanInstallationSupplierTest.groovy

            given:
            def expectedLocation1 = candidates.createDir("java/11.0.6.hs-adpt")
            def expectedLocation2 = candidates.createDir("java/14")
            def expectedLocation3 = candidates.createDir("java/8.0.262.fx-librca")
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 3
            directories*.location.containsAll(expectedLocation1, expectedLocation2, expectedLocation3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top