Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,629 for starts (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

      def get_min_max_value(self) -> tuple[float, float]:
        """Finds min and max starting from the index of the max frequency.
    
         The HistogramMseMaxFrequency method starts from the bin with the highest
         frequency and expands the range to both sides. This performs well when data
         is well spread on both sides of the max frequency.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    		Version: "v1",
    		Kind:    "Pod",
    	}
    
    	tests := []struct {
    		name string
    		// Object to insert into fake kubeclient before the test starts.
    		initialObjects []runtime.Object
    		// Whether not to insert the content of initialObjects into the
    		// informers before the test starts. Set it to true to simulate the case
    		// where informers have not been notified yet of certain API objects.
    		informersAreLate bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. pkg/volume/util/subpath/subpath_windows.go

    	if path == "" || strings.HasSuffix(path, ":\\\\") || strings.HasSuffix(path, ":") || strings.HasSuffix(path, ":\\") {
    		return true
    	}
    	return false
    }
    
    // isVolumePrefix returns true if the given path name starts with "Volume" or volume prefix including
    // "\\.\", "\\?\" for device path or "UNC" or "\\" for UNC path. Otherwise, it returns false.
    func isDeviceOrUncPath(path string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/volume_manager.go

    	// state of the world caches. A volume is considered "in use" as soon as it
    	// is added to the desired state of world, indicating it *should* be
    	// attached to this node and remains "in use" until it is removed from both
    	// the desired state of the world and the actual state of the world, or it
    	// has been unmounted (as indicated in actual state of world).
    	GetVolumesInUse() []v1.UniqueVolumeName
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/os/exec/exec.go

    		for _, fn := range c.goroutine {
    			go func(fn func() error) {
    				err := fn()
    
    				status := <-statusc
    				if status.firstErr == nil {
    					status.firstErr = err
    				}
    				status.running--
    				if status.running == 0 {
    					goroutineErr <- status.firstErr
    				} else {
    					statusc <- status
    				}
    			}(fn)
    		}
    		c.goroutine = nil // Allow the goroutines' closures to be GC'd when they complete.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. src/html/template/js.go

    	case '+', '-':
    		// ++ and -- are not regexp preceders, but + and - are whether
    		// they are used as infix or prefix operators.
    		start := n - 1
    		// Count the number of adjacent dashes or pluses.
    		for start > 0 && s[start-1] == c {
    			start--
    		}
    		if (n-start)&1 == 1 {
    			// Reached for trailing minus signs since "---" is the
    			// same as "-- -".
    			return jsCtxRegexp
    		}
    		return jsCtxDivOp
    	case '.':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    				resultCh <- err
    			}()
    
    			// We create handleCtx with an adjusted deadline, for two reasons.
    			// One is to limit the time the request waits before its execution starts.
    			// The other reason for it is that Handle() underneath may start additional goroutine
    			// that is blocked on context cancellation. However, from APF point of view,
    			// we don't want to wait until the whole watch request is processed (which is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    			}
    		}
    	}
    }
    
    // Start starts the node shutdown manager and will start watching the node for shutdown events.
    func (m *managerImpl) Start() error {
    	stop, err := m.start()
    	if err != nil {
    		return err
    	}
    	go func() {
    		for {
    			if stop != nil {
    				<-stop
    			}
    
    			time.Sleep(dbusReconnectPeriod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            0 * _
    
            when:
            buildFinished(Integer.MAX_VALUE, [unsupportedFileSystemMountPoint])
            then:
            !vfsHasSnapshotsAt(unwatchableContent)
            0 * _
        }
    
        def "starts watching unsupported file system when watching is enabled"() {
            def unsupportedFileSystemMountPoint = file("unsupported").createDir()
            def unwatchableContent = unsupportedFileSystemMountPoint.file("file.txt").createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		expectRunningOrFail(t, ctrl, false)
    	})
    	t.Run("aggregate Run starts all registries", func(t *testing.T) {
    		go ctrl.Run(stop)
    		expectRunningOrFail(t, ctrl, true)
    		ctrl.DeleteRegistry("earlyAdd", "test")
    		ctrl.DeleteRegistry("earlyAddAndRun", "test")
    	})
    	t.Run("AddRegistry after aggregate Run does not start registry", func(t *testing.T) {
    		ctrl.AddRegistry(runnableRegistry("missed"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top