Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 438 for ahead (0.04 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/zzz_profile.yaml

    {{/*
    WARNING: DO NOT EDIT, THIS FILE IS A PROBABLY COPY.
    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

            return !tensorflow::IsInternalFrameForFilename(
                fileLoc.getFilename().str());
          } else {
            // If this is a non-FileLineColLoc, go ahead and include it.
            return true;
          }
        };
      }
    
      setHandler([this](Diagnostic& diag) { return this->handler(&diag); });
    }
    
    Status StatusScopedDiagnosticHandler::ConsumeStatus() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/smtp/smtp_test.go

    			if data[i] == "221 Goodbye" {
    				return
    			}
    			read := false
    			for !read || data[i] == "354 Go ahead" {
    				msg, err := tc.ReadLine()
    				bcmdbuf.Write([]byte(msg + "\r\n"))
    				read = true
    				if err != nil {
    					t.Errorf("Read error: %v", err)
    					return
    				}
    				if data[i] == "354 Go ahead" && msg == "." {
    					break
    				}
    			}
    		}
    	}(strings.Split(server, "\r\n"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionFailureDescriberRegistry.java

            registry.registerDescriber(VariantAwareAmbiguousResolutionFailure.class, MissingAttributeAmbiguousGraphVariantsFailureDescriber.class); // Added ahead of AmbiguousGraphVariantsFailureDescriber so the more specific ambiguity case is checked first
            registry.registerDescriber(VariantAwareAmbiguousResolutionFailure.class, AmbiguousGraphVariantsFailureDescriber.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:29:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. docs/en/docs/history-design-future.md

    Many developers and teams already depend on **FastAPI** for their projects (including me and my team).
    
    But still, there are many improvements and features to come.
    
    **FastAPI** has a great future ahead.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top