Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for distances (0.33 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    semicircular Ends into Circles, when either of the observed Colours fell within those Circles, I measured the distance of that Colour from the semicircular End of the Spectrum, and subducting half this distance from the measured distance of the two Colours, I took the Remainder for their corrected distance; and in these Observations set down this corrected distance for the difference of the distances of their Foci from the Lens. For, as the Length of the Rectilinear Sides of the Spectrum would be the whole...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    			fmt.Sprintf("some-instances.%s:%d", cfg.ClusterLocalFQDN(), port),
    			fmt.Sprintf("some-instances.%s:12345", cfg.ClusterLocalFQDN()),
    			fmt.Sprintf("some-instances.%s.%s.svc", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("some-instances.%s.%s.svc:12345", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("some-instances.%s", cfg.Service),
    			fmt.Sprintf("some-instances.%s:%d", cfg.Service, port),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    #   ZONE
    #   MASTER_NAME
    #
    # Sets:
    #   REPLICA_NAME
    function set-replica-name() {
      local instances
      instances=$(gcloud compute instances list \
        --project "${PROJECT}" \
        --filter="name ~ '$(get-replica-name-regexp)'" \
        --format "value(name)")
    
      suffix=""
      while echo "${instances}" | grep "${suffix}" &>/dev/null; do
        suffix="$(date | md5sum | head -c3)"
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    				Namespace:        TestServiceNamespace,
    			},
    			Spec: c.peerAuthn,
    		})
    	}
    
    	cg := NewConfigGenTest(c.t, TestOptions{
    		Services:   []*model.Service{service},
    		Instances:  instances,
    		Configs:    configs,
    		MeshConfig: c.mesh,
    	})
    
    	var proxy *model.Proxy
    	switch c.nodeType {
    	case model.SidecarProxy:
    		proxy = &model.Proxy{
    			Type:         model.SidecarProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    						Name:             "acme",
    						Namespace:        "default",
    					},
    					Spec: tt.destRule,
    				}
    			}
    			cg := NewConfigGenTest(t, TestOptions{
    				Instances:      instances,
    				ConfigPointers: []*config.Config{cfg},
    				Services:       []*model.Service{tt.service},
    				MeshConfig:     tt.meshConfig,
    			})
    			proxy := cg.SetupProxy(nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      auto reduced_e1 = tail_type.getShape().rend();
      auto i2 = full_type.getShape().rbegin();
    
      while ((std::distance(i1, reduced_e1) > 0) && (*(reduced_e1 - 1) == 1)) {
        reduced_e1--;
      }
    
      return (std::distance(i1, reduced_e1) > 0) &&
             (std::distance(i1, reduced_e1) <= full_type.getRank()) &&
             (std::equal(i1, reduced_e1, i2));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // NOTE(mrry): The Tdense attr is derived from dense_defaults, so we
      // do not need to validate dense_defaults.
      auto dense_types_count =
          std::distance(op.getTdense().begin(), op.getTdense().end());
      auto dense_values_count =
          std::distance(op.getDenseValues().begin(), op.getDenseValues().end());
      if (dense_values_count != dense_types_count) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    func autoConvert_v1alpha2_NamedResourcesResources_To_resource_NamedResourcesResources(in *v1alpha2.NamedResourcesResources, out *resource.NamedResourcesResources, s conversion.Scope) error {
    	out.Instances = *(*[]resource.NamedResourcesInstance)(unsafe.Pointer(&in.Instances))
    	return nil
    }
    
    // Convert_v1alpha2_NamedResourcesResources_To_resource_NamedResourcesResources is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    }
    
    // ServiceHandler - POST /minio/admin/v3/service?action={action}
    // ----------
    // Supports following actions:
    // - restart (restarts all the MinIO instances in a setup)
    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    func (a adminAPIHandlers) ServiceHandler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Map} instances (including instances of {@link
     * SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts {@link Lists}, {@link Sets}
     * and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top