Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,426 for ahead (0.14 sec)

  1. pkg/volume/flexvolume/expander-defaults.go

    	return newSize, nil
    }
    
    // the defaults for NodeExpand return a generic resize indicator that will trigger the operation executor to go ahead with
    // generic filesystem resize
    func (e *expanderDefaults) NodeExpand(rsOpt volume.NodeResizeOptions) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Regression test for #55160.
    //
    // The issue is that the parser reads ahead to the first batch of the
    // next generation to find generation boundaries, but if it finds an
    // error, it needs to delay handling that error until later. Previously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/upgrade/node/kubeletconfig.go

    		if err != nil {
    			return err
    		}
    
    		fmt.Println("[upgrade] The configuration for this node was successfully updated!")
    		fmt.Println("[upgrade] Now you should go ahead and upgrade the kubelet package using your package manager.")
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/kubelet/util/queue/work_queue_test.go

    	q.Enqueue(types.UID("foo4"), 1*time.Minute)
    	expected := []types.UID{types.UID("foo1"), types.UID("foo2")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    	// Dial the time to 1 hour ahead.
    	clock.Step(time.Hour)
    	expected = []types.UID{types.UID("foo3"), types.UID("foo4")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryServicesTest.groovy

        }
    
        @Rule ConcurrentTestUtil concurrent = new ConcurrentTestUtil()
    
        def "the registry can be concurrently written to"() {
            when:
            // obtain localhost address ahead of time as the first call in a JVM can take multiple secs in some systems
            def localhost = Inet6Address.getLocalHost()
            def registry = registry("someDir").get(DaemonRegistry)
            5.times { idx ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tfcompile_main.cc

    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/util/command_line_flags.h"
    
    namespace tensorflow {
    namespace tfcompile {
    
    const char kUsageHeader[] =
        "tfcompile performs ahead-of-time compilation of a TensorFlow graph,\n"
        "resulting in an object file compiled for your target architecture, and a\n"
        "header file that gives access to the functionality in the object file.\n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/encoding/gob/debug.go

    	}
    	return tabs[0:n]
    }
    
    func (t tab) print() {
    	fmt.Fprint(os.Stderr, t)
    }
    
    // A peekReader wraps an io.Reader, allowing one to peek ahead to see
    // what's coming without stealing the data from the client of the Reader.
    type peekReader struct {
    	r    io.Reader
    	data []byte // read-ahead data
    }
    
    // newPeekReader returns a peekReader that wraps r.
    func newPeekReader(r io.Reader) *peekReader {
    	return &peekReader{r: r}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

     * against a given [target][ProgramTarget].
     *
     * @see PartialEvaluator.reduce
     */
    internal
    sealed class ResidualProgram {
    
        /**
         * A static residue, can be compiled ahead of time.
         */
        data class Static(val instructions: List<Instruction>) : ResidualProgram() {
    
            constructor(vararg instructions: Instruction) :
                this(instructions.toList())
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. src/image/format.go

    	formatsMu.Lock()
    	formats, _ := atomicFormats.Load().([]format)
    	atomicFormats.Store(append(formats, format{name, magic, decode, decodeConfig}))
    	formatsMu.Unlock()
    }
    
    // A reader is an io.Reader that can also peek ahead.
    type reader interface {
    	io.Reader
    	Peek(int) ([]byte, error)
    }
    
    // asReader converts an io.Reader to a reader.
    func asReader(r io.Reader) reader {
    	if rr, ok := r.(reader); ok {
    		return rr
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/net/tcpsockopt_windows.go

    		// provide one.
    		interval = defaultKeepAliveInterval
    	case idle < 0 && interval < 0:
    		// Nothing to do, just bail out.
    		return nil
    	case idle >= 0 && interval >= 0:
    		// Go ahead.
    	}
    
    	if idle == 0 {
    		idle = defaultTCPKeepAliveIdle
    	}
    	if interval == 0 {
    		interval = defaultTCPKeepAliveInterval
    	}
    
    	// The kernel expects milliseconds so round to next highest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top