Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 368 for readLog (0.22 sec)

  1. cmd/kube-proxy/app/server_other.go

    import (
    	"context"
    	"fmt"
    	"runtime"
    
    	"k8s.io/kubernetes/pkg/proxy"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    )
    
    // platformApplyDefaults is called after parsing command-line flags and/or reading the
    // config file, to apply platform-specific default values to config.
    func (o *Options) platformApplyDefaults(config *proxyconfigapi.KubeProxyConfiguration) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return nil, fmt.Errorf("error reading magic number from %s: %v", name, err)
    	}
    
    	elfMagic := string(header[:])
    
    	// Match against supported file types.
    	if elfMagic == elf.ELFMAG {
    		f, err := b.openELF(name, start, limit, offset, relocationSymbol)
    		if err != nil {
    			return nil, fmt.Errorf("error reading ELF file %s: %v", name, err)
    		}
    		return f, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/ts_test.go

    	if b, err := cmd.CombinedOutput(); err != nil {
    		t.Fatalf("go run failed (%v): %s", err, b)
    	}
    
    	// Pick out the generated meta-data file.
    	files, err := os.ReadDir(dstdir)
    	if err != nil {
    		t.Fatalf("reading %s: %v", dstdir, err)
    	}
    	for _, f := range files {
    		if strings.HasPrefix(f.Name(), "covmeta") {
    			return filepath.Join(dstdir, f.Name()), "hello.go:"
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/ChainedTransformStepNodeCodec.kt

            write(unpackTransformStep(value))
            write(value.previousTransformStepNode)
        }
    
        override suspend fun ReadContext.doDecode(): TransformStepNode.ChainedTransformStepNode {
            val transformStepNodeId = readLong()
            val targetComponentVariant = readNonNull<ComponentVariantIdentifier>()
            val sourceAttributes = readNonNull<AttributeContainer>()
            val transformStepSpec = readNonNull<TransformStepSpec>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FreeListBlockStore.java

                nextBlock = BlockPointer.pos(inputStream.readLong());
                largestInNextBlock = inputStream.readInt();
                int count = inputStream.readInt();
                for (int i = 0; i < count; i++) {
                    BlockPointer pos = BlockPointer.pos(inputStream.readLong());
                    int size = inputStream.readInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/InitialTransformStepNodeCodec.kt

            write(unpackTransformStep(value))
            write(value.inputArtifact)
        }
    
        override suspend fun ReadContext.doDecode(): TransformStepNode.InitialTransformStepNode {
            val transformStepNodeId = readLong()
            val targetComponentVariant = readNonNull<ComponentVariantIdentifier>()
            val sourceAttributes = readNonNull<AttributeContainer>()
            val transformStepSpec = readNonNull<TransformStepSpec>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/crypto/rand/rand_plan9.go

    	"io"
    	"os"
    	"sync"
    	"time"
    )
    
    const randomDevice = "/dev/random"
    
    func init() {
    	Reader = &reader{}
    }
    
    // reader is a new pseudorandom generator that seeds itself by
    // reading from /dev/random. The Read method on the returned
    // reader always returns the full amount asked for, or else it
    // returns an error. The generator is a fast key erasure RNG.
    type reader struct {
    	mu      sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/HashSetCodec.kt

    ): T {
        val size = readSmallInt()
        val container = factory(size)
        for (i in 0 until size) {
            val element = read()
            if (element === CircularReferenceMarker.INSTANCE) {
                // upon reading a circular reference, wait until all objects have been initialized
                // before inserting the elements in the resulting set.
                val remainingSize = size - i
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. internal/ringbuffer/README.md

    
    # Blocking vs Non-blocking
    
    The default behavior of the ring buffer is non-blocking, 
    meaning that reads and writes will return immediately with an error if the operation cannot be completed.
    If you want to block when reading or writing, you must enable it:
    
    ```go
    	rb := ringbuffer.New(1024).SetBlocking(true)
    ```
    
    Enabling blocking will cause the ring buffer to behave like a buffered [io.Pipe](https://pkg.go.dev/io#Pipe).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheSkipCacheIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "skip reading cached state on #commandLine"() {
    
            def configurationCache = newConfigurationCacheFixture()
    
            given:
            buildFile << """
                abstract class MyTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top