Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,025 for Devices (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.cc

    mlir::PassPipelineRegistration<> replicated_clustering_bridge_v2(
        "tf-replicated-clustering-bridge-v2",
        "Run all the passes involved in transforming a TensorFlow 2 graph before "
        "execution so that it is suitable for targeting devices.",
        CreateReplicatedClusteringPipelineV2);
    
    }  // namespace v2
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/clone_constants_for_better_clustering_test.cc

      GraphOptimizationPassOptions options;
      options.graph = &graph;
      options.session_options = &session_options;
    
      // Scope::ToGraph seems to drop assigned devices, probably because it goes
      // through a GraphDef.  So explicitly maintain the device assignment.
      // std::unordered_map<string, string> assigned_device_names;
      // for (Node* n : s.graph()->nodes()) {
      //   assigned_device_names[n->name()] = n->assigned_device_name();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

                  newUpdater(AggregateFutureState.class, "remaining"));
        } catch (Throwable reflectionFailure) { // sneaky checked exception
          // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
          // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
          // For these users fallback to a suboptimal implementation, based on synchronized. This will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    	hs := &kubestats.VolumeHealthStats{}
    
    	if metric != nil && metric.Abnormal != nil {
    		hs.Abnormal = *metric.Abnormal
    	}
    
    	return hs
    }
    
    // Fake block-volume/metrics provider, block-devices have no inodes
    var _ volume.BlockVolume = &fakeBlockVolume{}
    
    type fakeBlockVolume struct{}
    
    func (v *fakeBlockVolume) GetGlobalMapPath(*volume.Spec) (string, error) { return "", nil }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

                  newUpdater(AggregateFutureState.class, "remaining"));
        } catch (Throwable reflectionFailure) { // sneaky checked exception
          // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
          // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
          // For these users fallback to a suboptimal implementation, based on synchronized. This will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/internal/buildcfg/cfg.go

    	return armStr
    }
    
    func goarm() (g goarmFeatures) {
    	const (
    		softFloatOpt = ",softfloat"
    		hardFloatOpt = ",hardfloat"
    	)
    	def := defaultGOARM
    	if GOOS == "android" && GOARCH == "arm" {
    		// Android arm devices always support GOARM=7.
    		def = "7"
    	}
    	v := envOr("GOARM", def)
    
    	floatSpecified := false
    	if strings.HasSuffix(v, softFloatOpt) {
    		g.SoftFloat = true
    		floatSpecified = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/deployment/services.go

    func (s *ServiceAssociationAnalyzer) analyzeDeploymentPortProtocol(r *resource.Instance, c analysis.Context) {
    	// Find matching services with resulting pod from deployment
    	matchingSvcs := s.findMatchingServices(r, c)
    
    	// Generate a port map from the matching services.
    	// It creates a structure that will allow us to detect
    	// if there are different protocols for the same port.
    	portMap := servicePortMap(matchingSvcs)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/ztunnel/configdump/services.go

    		waypoint := serviceWaypointName(svc, zDump.Services)
    		fmt.Fprintf(w, "%v\t%v\t%v\t%v\n",
    			svc.Namespace, svc.Name, ip, waypoint)
    	}
    	return w.Flush()
    }
    
    // PrintServiceDump prints the relevant services in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintServiceDump(filter ServiceFilter, outputFormat string) error {
    	zDump := c.ztunnelDump
    	svcs := slices.Filter(zDump.Services, filter.Verify)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	"istio.io/istio/pkg/workloadapi"
    )
    
    func (a *index) ServicesCollection(
    	Services krt.Collection[*v1.Service],
    	ServiceEntries krt.Collection[*networkingclient.ServiceEntry],
    	Waypoints krt.Collection[Waypoint],
    	Namespaces krt.Collection[*v1.Namespace],
    ) krt.Collection[model.ServiceInfo] {
    	ServicesInfo := krt.NewCollection(Services, func(ctx krt.HandlerContext, s *v1.Service) *model.ServiceInfo {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/services/tests/services.sample.conf

    # tag::cli[]
    # gradle build
    # end::cli[]
    executable: gradle
    args: build -q
    expected-output-file: services.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 170 bytes
    - Viewed (0)
Back to top