Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 798 for planets (0.64 sec)

  1. src/sort/example_keys_test.go

    	return len(s.planets)
    }
    
    // Swap is part of sort.Interface.
    func (s *planetSorter) Swap(i, j int) {
    	s.planets[i], s.planets[j] = s.planets[j], s.planets[i]
    }
    
    // Less is part of sort.Interface. It is implemented by calling the "by" closure in the sorter.
    func (s *planetSorter) Less(i, j int) bool {
    	return s.by(&s.planets[i], &s.planets[j])
    }
    
    var planets = []Planet{
    	{"Mercury", 0.055, 0.4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:48:39 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  2. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Fringes of Colours. Let AB, CD [in _Fig._ 2.] represent the parallel Planes of a Looking-glass, and BD the Plane of the Diamond-cut, making at B a very obtuse Angle with the Plane AB. And let all the Light between the Rays ENI and FBM pass directly through the parallel Planes of the Glass, and fall upon the Paper between I and M, and all the Light between the Rays GO and HD be refracted by the oblique Plane of the Diamond-cut BD, and fall upon the Paper between K and L; and the Light which passes directly...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  3. src/testdata/Isaac.Newton-Opticks.txt

    parallel Planes of a Looking-glass, and BD the Plane of the Diamond-cut,
    making at B a very obtuse Angle with the Plane AB. And let all the Light
    between the Rays ENI and FBM pass directly through the parallel Planes
    of the Glass, and fall upon the Paper between I and M, and all the Light
    between the Rays GO and HD be refracted by the oblique Plane of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/panels.libsonnet

    John Howard <******@****.***> 1718225188 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    			// Install ingress and egress gateways
    			// These need to be installed as a separate step for external control planes because config clusters are installed
    			// before the external control plane cluster. Since remote clusters use gateway injection, we can't install the gateways
    			// until after the control plane is running, so we install them here. This is not really necessary for pure (non-config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. samples/ambient-argo/istio/control-plane-appset.yaml

    Mitch Connors <******@****.***> 1699062890 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1006 bytes
    - Viewed (0)
  7. pkg/test/framework/components/environment/kube/flags.go

    			"comma-separated list of the form <clusterIndex>:<controlPlaneClusterIndex>, where the indexes refer to the order in which "+
    			"a given cluster appears in the 'istio.test.kube.config' flag. This topology also determines where control planes should "+
    			"be deployed. If not specified, the default is to deploy a control plane per cluster (i.e. `replicated control "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinder.kt

              } else {
                firstException.addSuppressed(throwable)
              }
            }
    
            val nextPlan = connectResult.nextPlan
            if (nextPlan != null) {
              // Try this plan's successor before deferred plans because it won the race!
              routePlanner.deferredPlans.addFirst(nextPlan)
            }
          }
        } finally {
          cancelInFlightConnects()
        }
    
        throw firstException!!
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. tests/integration/pilot/multiplecontrolplanes/main_test.go

    					namespace.Future(&echo2NS),
    					namespace.Future(&echo3NS),
    				},
    				ExternalNamespace: namespace.Future(&externalNS),
    			})).
    		Run()
    }
    
    // TestMultiControlPlane sets up two distinct istio control planes and verify if resources and traffic are properly isolated
    func TestMultiControlPlane(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			// configure peerauthentication per system namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/health.go

    	}
    
    	notReadyControlPlanes := getNotReadyNodes(nodes.Items)
    	if len(notReadyControlPlanes) != 0 {
    		return errors.Errorf("there are NotReady control-planes in the cluster: %v", notReadyControlPlanes)
    	}
    	return nil
    }
    
    // staticPodManifestHealth makes sure the required static pods are presents
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top