Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 120 for clocks (0.13 sec)

  1. cmd/xl-storage-format-v2.go

    	ErasureM           int               `json:"EcM" msg:"EcM"`                                  // Erasure data blocks
    	ErasureN           int               `json:"EcN" msg:"EcN"`                                  // Erasure parity blocks
    	ErasureBlockSize   int64             `json:"EcBSize" msg:"EcBSize"`                          // Erasure block size
    	ErasureIndex       int               `json:"EcIndex" msg:"EcIndex"`                          // Erasure disk index
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    include::sample[dir="snippets/kotlinDsl/noAccessors/kotlin",files="build.gradle.kts[tags=dependencies]"]
    ====
    
    The code looks similar to that for the type-safe accessors, except that the configuration names are string literals in this case.
    You can use string literals for configuration names in dependency declarations and within the `configurations {}` block.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    }
    
    // Option configures a PriorityQueue
    type Option func(*priorityQueueOptions)
    
    // WithClock sets clock for PriorityQueue, the default clock is clock.RealClock.
    func WithClock(clock clock.Clock) Option {
    	return func(o *priorityQueueOptions) {
    		o.clock = clock
    	}
    }
    
    // WithPodInitialBackoffDuration sets pod initial backoff duration for PriorityQueue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    //
    // Deprecated: Use [ParseRevocationList] instead.
    func ParseCRL(crlBytes []byte) (*pkix.CertificateList, error) {
    	if bytes.HasPrefix(crlBytes, pemCRLPrefix) {
    		block, _ := pem.Decode(crlBytes)
    		if block != nil && block.Type == pemType {
    			crlBytes = block.Bytes
    		}
    	}
    	return ParseDERCRL(crlBytes)
    }
    
    // ParseDERCRL parses a DER encoded CRL from the given bytes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Executes an external Java process.
         * <p>
         * The given action configures a {@link org.gradle.process.JavaExecSpec}, which is used to launch the process.
         * This method blocks until the process terminates, with its result being returned.
         *
         * @param action The action for configuring the execution.
         * @return the result of the execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Using empty configuration blocks for file or directory permissions still sets them explicitly, just to fixed default values.
    Everything inside one of these configuration blocks is relative to the default values.
    Default permissions differ for files and directories:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    * Image GC logic should compensate for reserved blocks ([#27996](https://github.com/kubernetes/kubernetes/pull/27996), [@ronnielai](https://github.com/ronnielai))
    * Bump minimum API version for docker to 1.21 ([#27208](https://github.com/kubernetes/kubernetes/pull/27208), [@yujuhong](https://github.com/yujuhong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Note: when inserting Select1 ops we need to ensure they are in the
    // same block as their argument. We could also use @x.Block for this
    // but moving the flag generating value to a different block seems to
    // increase the likelihood that the flags value will have to be regenerated
    // by flagalloc which is not what we want.
    (LTDBR (Select0 x:(F(ADD|SUB) _ _)))   && b == x.Block => (Select1 x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. cmd/peer-rest-server.go

    				return false
    			}
    		}
    		return rulesMap.MatchSimple(ev.EventName, ev.S3.Object.Key)
    	})
    	if err != nil {
    		return grid.NewRemoteErr(err)
    	}
    
    	// Process until remote disconnects.
    	// Blocks on upstream (out) congestion.
    	// We have however a dynamic downstream buffer (ch).
    	buf := bytes.NewBuffer(grid.GetByteBuffer())
    	enc := json.NewEncoder(buf)
    	tmpEvt := struct{ Records []event.Event }{[]event.Event{{}}}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	// struct flock is packed on z/OS. We can't emulate that in Go so
    	// instead we pack it here.
    	var flock [24]byte
    	*(*int16)(unsafe.Pointer(&flock[0])) = lk.Type
    	*(*int16)(unsafe.Pointer(&flock[2])) = lk.Whence
    	*(*int64)(unsafe.Pointer(&flock[4])) = lk.Start
    	*(*int64)(unsafe.Pointer(&flock[12])) = lk.Len
    	*(*int32)(unsafe.Pointer(&flock[20])) = lk.Pid
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top