Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Sm (0.1 sec)

  1. pkg/proxy/servicechangetracker.go

    // for all Services in sm with non-zero HealthCheckNodePort.
    func (sm ServicePortMap) HealthCheckNodePorts() map[types.NamespacedName]uint16 {
    	// TODO: If this will appear to be computationally expensive, consider
    	// computing this incrementally similarly to svcPortMap.
    	ports := make(map[types.NamespacedName]uint16)
    	for svcPortName, info := range sm {
    		if info.HealthCheckNodePort() != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. cmd/site-replication-utils.go

    			return err
    		}
    		sm.Lock()
    		if _, ok := sm.peerResyncMap[peer.DeploymentID]; !ok {
    			sm.peerResyncMap[peer.DeploymentID] = resyncState{resyncID: rs.ResyncID, LastSaved: time.Time{}}
    			sm.resyncStatus[rs.ResyncID] = rs
    		}
    		sm.Unlock()
    	}
    	return nil
    }
    
    func (sm *siteResyncMetrics) report(dID string) *madmin.SiteResyncMetrics {
    	sm.RLock()
    	defer sm.RUnlock()
    	rst, ok := sm.peerResyncMap[dID]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/python/mlir_wrapper/filecheck_wrapper.cc

        llvm::FileCheck fc(fcr);
        llvm::SourceMgr SM = llvm::SourceMgr();
        SM.AddNewSourceBuffer(llvm::MemoryBuffer::getMemBuffer(input),
                              llvm::SMLoc());
        SM.AddNewSourceBuffer(llvm::MemoryBuffer::getMemBuffer(check),
                              llvm::SMLoc());
        fc.readCheckFile(SM, llvm::StringRef(check));
        return fc.checkInput(SM, llvm::StringRef(input));
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 08:13:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/upgrade/admin_upgrade.jsp

    								</h3>
    							</div>
    							<div class="card-body">
    								<div class="form-group row">
    									<label for="targetVersion" class="col-sm-3 text-sm-right col-form-label"><la:message
    											key="labels.target_version"
    										/></label>
    									<div class="col-sm-9">
    										<la:errors property="targetVersion" />
    										<la:select styleId="targetVersion" property="targetVersion" styleClass="form-control">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/runtime/pprof/vminfo_darwin_test.go

    	// shared memory               103ce4000-103ce8000    [   16K    16K    16K     0K] r--/r-SM=SHM
    	// MALLOC metadata             103ce8000-103cec000    [   16K    16K    16K     0K] r--/rwx SM=COW          DefaultMallocZone_0x103ce8000 zone structure
    	// MALLOC guard page           103cf0000-103cf4000    [   16K     0K     0K     0K] ---/rwx SM=COW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. istioctl/pkg/metrics/metrics.go

    		reqTot, destWorkloadLabel, wname, destWorkloadNamespaceLabel, wns, duration)
    
    	var me *multierror.Error
    	var err error
    	sm := workloadMetrics{workload: workload}
    	sm.totalRPS, err = vectorValue(promAPI, rpsQuery)
    	if err != nil {
    		me = multierror.Append(me, err)
    	}
    
    	sm.errorRPS, err = vectorValue(promAPI, errRPSQuery)
    	if err != nil {
    		me = multierror.Append(me, err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. pkg/util/protomarshal/protomarshal.go

    		return err
    	}
    	return ApplyJSONStrict(string(js), pb)
    }
    
    func ShallowCopy(dst, src proto.Message) {
    	dm := dst.ProtoReflect()
    	sm := src.ProtoReflect()
    	if dm.Type() != sm.Type() {
    		panic("mismatching type")
    	}
    	proto.Reset(dst)
    	sm.Range(func(fd protoreflect.FieldDescriptor, v protoreflect.Value) bool {
    		dm.Set(fd, v)
    		return true
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

                        a().target("_blank").classAttr("btn btn-primary btn-sm").href(webUrls.get(0)).text("Build").end();
                    } else {
                        // @formatter:off
                        div().classAttr("dropdown").style("display: inline-block");
                            button().classAttr("btn btn-primary btn-sm dropdown-toggle").attr("data-toggle", "dropdown").text("Build").end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. istioctl/pkg/metrics/metrics_test.go

    				&prometheus_model.Sample{Value: 4.95},
    			},
    		},
    	}
    	workload := "details"
    
    	sm, err := metrics(mockProm, workload, time.Minute)
    	if err != nil {
    		t.Fatalf("Unwanted exception %v", err)
    	}
    
    	var out bytes.Buffer
    	printHeader(&out)
    	printMetrics(&out, sm)
    	output := out.String()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 02:07:44 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/metrics.h

    monitoring::GaugeCell<std::string>& SavedModelWriteFingerprint();
    
    // Returns "/tensorflow/core/saved_model/write/path" cell, which contains
    // the saved_model_path of the SM when it is exported.
    monitoring::GaugeCell<std::string>& SavedModelWritePath();
    
    // Returns "/tensorflow/core/saved_model/write/path_and_fingerprint" cell, which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top