Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,116 for _instances (0.44 sec)

  1. pkg/collateral/metrics/otel_test.go

    	)
    
    	// InstancesTotal is a measure of the number of known instances.
    	InstancesTotal = monitoring.NewDistribution(
    		"mixer/config/instance_configs_total",
    		"The number of known instances in the current config.",
    		[]float64{0, 1, 2},
    	)
    
    	// InstanceErrs is a measure of the number of errors for processing instance config.
    	InstanceErrs = monitoring.NewGauge(
    		"mixer/config/instance_config_errors_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. cluster/gce/upgrade.sh

      echo "== Draining ${instance}. == " >&2
      local drain_rc
      "${KUBE_ROOT}/cluster/kubectl.sh" drain --delete-emptydir-data --force --ignore-daemonsets "${instance}" \
        && drain_rc=$? || drain_rc=$?
      if [[ "${drain_rc}" != 0 ]]; then
        echo "== FAILED to drain ${instance} =="
        return ${drain_rc}
      fi
    
      # Recreate instance
      echo "== Recreating instance ${instance}. ==" >&2
      local recreate_rc
      local recreate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/registration_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if e, a := len(instances), len(listWithItem.Items); e != a {
    		t.Errorf("expected %v, got %v", e, a)
    	}
    	for _, a := range listWithItem.Items {
    		if e := instances[a.GetName()].Instance; !reflect.DeepEqual(e, &a) {
    			t.Errorf("expected %v, got %v", e, a)
    		}
    	}
    	for key := range instances {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 11:58:05 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/ingress/interface.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    )
    
    type Instances []Instance
    
    func (i Instances) Callers() echo.Callers {
    	var out echo.Callers
    	for _, instance := range i {
    		out = append(out, instance)
    	}
    	return out
    }
    
    // Instance represents a deployed Ingress Gateway instance.
    type Instance interface {
    	echo.Caller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/mirror_test.go

    			tc.percentage, actualPercent, tc.threshold, testID)
    	}
    
    	return merr.ErrorOrNil()
    }
    
    func logCount(instances echo.Instances, testID string) (float64, error) {
    	counts := map[string]float64{}
    	for _, instance := range instances {
    		workloads, err := instance.Workloads()
    		if err != nil {
    			return -1, fmt.Errorf("failed to get Subsets: %v", err)
    		}
    		var logs string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

      <version>0.0.0.0</version>
    </parent>
        ]]></configuration>
        <description> This is the MavenProject instance for the parent of the current POM.
        </description>
      </expression>
      <expression>
        <syntax>project.file</syntax>
        <description> This is the File instance that refers to the location of the current POM on
          disk.
        </description>
      </expression>
      <expression>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 5.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/services/BuildServiceRegistry.java

         * @param implementationType The service implementation type. Instances of the service are created as for {@link org.gradle.api.model.ObjectFactory#newInstance(Class, Object...)}.
         * @param configureAction An action to configure the registration. You can use this to provide parameters to the service instance.
         * @return A {@link Provider} that will create the service instance when queried.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 14:08:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. cluster/gce/list-resources.sh

    echo "Region: ${REGION}"
    echo "Zone: ${ZONE}"
    echo "Instance prefix: ${INSTANCE_PREFIX:-}"
    echo "Network: ${NETWORK}"
    echo "Provider: ${KUBERNETES_PROVIDER:-}"
    
    # List resources related to instances, filtering by the instance prefix if
    # provided.
    
    set +e # do not stop on error
    
    gcloud-list compute instance-templates "name ~ '${INSTANCE_PREFIX}.*'"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/PairedStats.java

       * may be false for some instances where the statistics are mathematically equal, including
       * instances constructed from the same values in a different order... or (in the general case)
       * even in the same order. (It is guaranteed to return true for instances constructed from the
       * same values in the same order if {@code strictfp} is in effect, or if the system architecture
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/PairedStats.java

       * may be false for some instances where the statistics are mathematically equal, including
       * instances constructed from the same values in a different order... or (in the general case)
       * even in the same order. (It is guaranteed to return true for instances constructed from the
       * same values in the same order if {@code strictfp} is in effect, or if the system architecture
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top