Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,186 for START (0.04 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. src/crypto/internal/boring/bcache/cache.go

    //
    // The cache is GC-friendly in the sense that the keys do not
    // indefinitely prevent the garbage collector from collecting them.
    // Instead, at the start of each GC, the cache is cleared entirely. That
    // is, the cache is lossy, and the loss happens at the start of each GC.
    // This means that clients need to be able to cope with cache entries
    // disappearing, but it also means that clients don't need to worry about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java

            int start = bufferIndex;
            isLoggedInAsGuest = ( buffer[bufferIndex] & 0x01 ) == 0x01 ? true : false;
            bufferIndex += 2;
            if (extendedSecurity) {
                int blobLength = readInt2(buffer, bufferIndex);
                bufferIndex += 2;
                blob = new byte[blobLength];
            }
            return bufferIndex - start;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/ByteOutputTest.groovy

            when:
            def stream = output.start(0)
            stream.writeInt(123)
            stream.writeByte(12)
            output.done()
    
            then:
            file.length() == 5
            file.seek(0)
            file.readInt() == 123
            file.readByte() == 12
    
            when:
            stream = output.start(5)
            stream.writeInt(321)
            output.done()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top