Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,651 for _start (0.08 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/statefulsetordinals.go

    type StatefulSetOrdinalsApplyConfiguration struct {
    	Start *int32 `json:"start,omitempty"`
    }
    
    // StatefulSetOrdinalsApplyConfiguration constructs an declarative configuration of the StatefulSetOrdinals type for use with
    // apply.
    func StatefulSetOrdinals() *StatefulSetOrdinalsApplyConfiguration {
    	return &StatefulSetOrdinalsApplyConfiguration{}
    }
    
    // WithStart sets the Start field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Names.java

                        baseName.append(name.substring(start + 1, end));
                    } else {
                        baseName.append(name.substring(start, end));
                        lowerBaseName.append('-');
                    }
                    lowerBaseName.append(Character.toLowerCase(name.charAt(start)));
                    lowerBaseName.append(name.substring(start + 1, end));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/monitor/README.md

    ```
    
    ## Running a Monitor
    
    Once created, you simply run the monitor, providing a stop channel.
    
    ```golang
    stop := make(chan struct{})
    ...
    monitor.Start(stop)
    ```
    
    The `Start` method will kick off an asynchronous polling loop and will return immediately.
    
    ## Example
    
    To configure and run a monitor that watches for file changes to update an in-memory config store:
    
    ```golang
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  4. src/regexp/syntax/make_perl_groups.pl

      my ($class) = @_;
      my $regexp = "[$class]";
      my $start = -1;
      for (my $i=0; $i<=129; $i++) {
        if ($i == 129) { $i = 256; }
        if ($i <= 128 && ($overrides{"$class:$i"} // chr($i) =~ $regexp)) {
          if ($start < 0) {
            $start = $i;
          }
        } else {
          if ($start >= 0) {
            push @ranges, [$start, $i-1];
          }
          $start = -1;
        }
      }
      return @ranges;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/ExclusiveCacheAccessingWorkerTest.groovy

            when:
            start(cacheAccessWorker)
            cacheAccessWorker.flush()
    
            then:
            counter == 3
    
            cleanup:
            cacheAccessWorker?.stop()
        }
    
        def "flush rethrows action failure"() {
            def failure = new RuntimeException()
            cacheAccessWorker.enqueue { throw failure }
    
            when:
            start(cacheAccessWorker)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/wait-on-pipe.go

    		}
    		done <- struct{}{}
    	}()
    
    	// Give the goroutine ample chance to block on the pipe.
    	time.Sleep(10 * time.Millisecond)
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    
    	// This isn't enough to have a full generation pass by default,
    	// but it is generally enough in stress mode.
    	time.Sleep(100 * time.Millisecond)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/gomaxprocs.go

    	"runtime/trace"
    	"time"
    )
    
    func main() {
    	// Start a goroutine that calls runtime.GC to try and
    	// introduce some interesting events in between the
    	// GOMAXPROCS calls.
    	go func() {
    		for {
    			runtime.GC()
    			time.Sleep(1 * time.Millisecond)
    		}
    	}()
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 967 bytes
    - Viewed (0)
  8. pkg/kube/informerfactory/factory.go

    	Informer cache.SharedIndexInformer
    	start    func(stopCh <-chan struct{})
    }
    
    func (s StartableInformer) Start(stopCh <-chan struct{}) {
    	s.start(stopCh)
    }
    
    // InformerFactory provides access to a shared informer factory
    type InformerFactory interface {
    	// Start initializes all requested informers. They are handled in goroutines
    	// which run until the stop channel gets closed.
    	Start(stopCh <-chan struct{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/suggest/concurrent/DeferredTest.java

                try {
                    Thread.sleep(1000);
                } catch (InterruptedException ignore) {}
                deferred.resolve(new SuggestResponse("", 0, Collections.emptyList(), 0, null));
            });
            th.start();
    
            final CountDownLatch latch = new CountDownLatch(1);
            deferred.promise().then(response -> latch.countDown());
            assertTrue(latch.await(10, TimeUnit.SECONDS));
        }
    
        @Test
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. internal/s3select/select.go

    		if start < 0 {
    			return 0, 0, errors.New("ScanRange: Start after EOF")
    		}
    		return start, -1, nil
    	}
    	if s.Start == nil {
    		// Suffix length
    		end := int64(*s.End)
    		if end < 0 {
    			return 0, 0, errors.New("ScanRange: End bigger than file")
    		}
    		// Suffix length
    		return -end, -1, nil
    	}
    	start = int64(*s.Start)
    	end := int64(*s.End)
    	return start, end - start + 1, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top