Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,186 for START (0.05 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/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. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/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)
  3. src/cmd/objdump/main.go

    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    // stopping at the end address. The start and end addresses are program
    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/trace/testdata/testprog/main.go

    	cpuHog(20 * time.Millisecond)
    }
    
    func cpuHog(dt time.Duration) {
    	start := time.Now()
    	for i := 0; ; i++ {
    		if i%1000 == 0 && time.Since(start) > dt {
    			return
    		}
    	}
    }
    
    func allocHog(dt time.Duration) {
    	start := time.Now()
    	var s [][]byte
    	for i := 0; ; i++ {
    		if i%1000 == 0 {
    			if time.Since(start) > dt {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Bytes.java

        final byte[] array;
        final int start;
        final int end;
    
        ByteArrayAsList(byte[] array) {
          this(array, 0, array.length);
        }
    
        ByteArrayAsList(byte[] array, int start, int end) {
          this.array = array;
          this.start = start;
          this.end = end;
        }
    
        @Override
        public int size() {
          return end - start;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            try {
                final long start = System.currentTimeMillis();
                final SuggestWriterResult result = suggestWriter.write(client, settings, index, array, true);
                return new SuggestIndexResponse(items.length, items.length, result.getFailures(), System.currentTimeMillis() - start);
            } catch (final Exception e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/process/internal/MultiRequestWorkerProcessIntegrationTest.groovy

            cleanup:
            worker?.stop()
        }
    
        def "propagates failure to start worker process"() {
            when:
            def builder = workerFactory.multiRequestWorker(StatefulTestWorker.class)
            builder.baseName = 'broken worker'
            builder.javaCommand.jvmArgs("-broken")
            def worker = builder.build()
            worker.start()
    
            then:
            def e = thrown(WorkerProcessException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  8. src/encoding/json/indent.go

    			if start < i {
    				dst = append(dst, src[start:i]...)
    			}
    			dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
    			start = i + 3
    		}
    		v := scan.step(scan, c)
    		if v >= scanSkipSpace {
    			if v == scanError {
    				break
    			}
    			if start < i {
    				dst = append(dst, src[start:i]...)
    			}
    			start = i + 1
    		}
    	}
    	if scan.eof() == scanError {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal.go

    		if xmlname.name != "" {
    			start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
    		} else {
    			fv := xmlname.value(val, dontInitNilPointers)
    			if v, ok := fv.Interface().(Name); ok && v.Local != "" {
    				start.Name = v
    			}
    		}
    	}
    	if start.Name.Local == "" && finfo != nil {
    		start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
    	}
    	if start.Name.Local == "" {
    		name := typ.Name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

            private final Object obj;
        }
    
        public byte[] buf;
        public int start;
        public int index;
        public int length;
        public NdrBuffer deferred;
    
    
        public NdrBuffer ( byte[] buf, int start ) {
            this.buf = buf;
            this.start = this.index = start;
            this.length = 0;
            this.deferred = this;
        }
    
    
        public NdrBuffer derive ( int idx ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.6K bytes
    - Viewed (0)
Back to top