Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for eventual (0.18 sec)

  1. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    			case step.deleted != nil:
    				g.Expect(cms.Delete(context.TODO(), step.deleted.Name, metav1.DeleteOptions{})).
    					Should(Succeed())
    			}
    
    			if step.expectCalled {
    				g.Eventually(getCalled, time.Second).Should(Equal(true))
    				g.Eventually(getCM, time.Second).Should(Equal(newCM))
    			} else {
    				g.Consistently(getCalled).Should(Equal(false))
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue51658.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test checks syntax errors which differ between
    // go/parser and the syntax package.
    // TODO: consolidate eventually
    
    package p
    
    type F { // ERRORx "expected type|type declaration"
    	float64
    } // ERRORx "expected declaration|non-declaration statement"
    
    func _[T F | int](x T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1016 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_cleanup.txt

    go test -v -run=FuzzFunction
    stdout '(?s)inner.*outer'
    
    # TODO(jayconrod): test cleanup while fuzzing. For now, the worker process's
    # stdout and stderr is connected to the coordinator's, but it should eventually
    # be connected to os.DevNull, so we wouldn't see t.Log output.
    
    -- go.mod --
    module cleanup
    
    go 1.15
    -- cleanup_test.go --
    package cleanup
    
    import (
    	"runtime"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package generic contains a typed wrapper over cache SharedIndexInformer
    // and Lister (maybe eventually should have a home there?)
    //
    // This interface is being experimented with as an easier way to write controllers
    // with a bit less boilerplate.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/BUILD

    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Experimental ops. These will eventually be replaced by machine-generated versions.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "array_ops",
        srcs = [
            "array_ops.cc",
        ],
        hdrs = [
            "array_ops.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DslOriginDependencyMetadata.java

         * - Accessing the `ClientModule` instance for a 'client module' dependency.
         * - Binding the source dependency to the first-order resolved components in `ResolvedConfiguration`.
         *
         * The goal is to eventually replace these uses, and remove this type.
         */
        Dependency getSource();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. pkg/registry/core/rest/storage_core_generic.go

    // GenericConfig provides information needed to build RESTStorage
    // for generic resources in core. It implements the "normal" RESTStorageProvider interface.
    type GenericConfig struct {
    	StorageFactory serverstorage.StorageFactory
    	EventTTL       time.Duration
    
    	ServiceAccountIssuer        serviceaccount.TokenGenerator
    	ServiceAccountMaxExpiration time.Duration
    	ExtendExpiration            bool
    
    	APIAudiences authenticator.Audiences
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileSelector.java

     *
     */
    public interface ProfileSelector {
    
        /**
         * Determines the profiles which are active in the specified activation context. Active profiles will eventually be
         * injected into the model.
         *
         * @param profiles The profiles whose activation status should be determined, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/concrete_function.h

    // SavedModel, and the FunctionDef of the SavedModel.
    //
    // Note(bmzhao): This class is only TEMPORARILY virtual, as a way to unblock
    // TFRT integration with TF Serving. Do not add more virtual implementations of
    // this class. Eventually we want to remove this virtual base class indirection
    // and have only a single implementation.
    class ConcreteFunction {
     public:
      virtual ~ConcreteFunction() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 29 15:50:58 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Restricted.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:57:00 UTC 2024
    - 1005 bytes
    - Viewed (0)
Back to top