Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,877 for actors (0.17 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

    /*
     * Copyright 2011 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultMutationGuardTest.groovy

            noExceptionThrown()
    
            where:
            methodUnderTest         | callableType | callable
            "withMutationDisabled"  | "Action"     | Actions.doNothing()
            "withMutationEnabled"   | "Action"     | Actions.doNothing()
        }
    
        def "doesn't protect across thread boundaries"() {
            given:
            def callable = new ActionCallingDisallowedMethod()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-retval-attrs.pbtxt

    Ken Franko <******@****.***> 1684886906 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 00:18:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * This approach ensures that sharing mutable state across targets via any means
     * (including {@link org.gradle.api.services.BuildService}, which are not supported) is prevented.
     * The absence of shared mutable state allows these actions to be safely executed in parallel as needed.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. docs/distributed/DESIGN.md

    ```
    minio server /mnt/controller{1...4}/data{1...16}
    ```
    
    Standalone erasure coded configuration with 16 sets, 16 drives per set, across mounts and controllers.
    
    ```
    minio server /mnt{1...4}/controller{1...4}/data{1...16}
    ```
    
    Distributed erasure coded configuration with 2 sets, 16 drives per set across hosts.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-task-across-generations.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 767 bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-task-across-generations.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Regression test for an issue found in development.
    //
    // The issue is that EvUserTaskEnd events don't carry the
    // task type with them, so the parser needs to track that
    // information. But if the parser just tracks the string ID
    // and not the string itself, that string ID may not be valid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Regression test for an issue found in development.
    //
    // The core of the issue is that if generation counters
    // aren't considered as part of sequence numbers, then
    // it's possible to accidentally advance without a
    // GoStatus event.
    //
    // The situation is one in which it just so happens that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    	}
    	d.finalizeNamespace(context.Background(), testNamespace)
    	actions := mockClient.Actions()
    	if len(actions) != 1 {
    		t.Errorf("Expected 1 mock client action, but got %v", len(actions))
    	}
    	if !actions[0].Matches("create", "namespaces") || actions[0].GetSubresource() != "finalize" {
    		t.Errorf("Expected finalize-namespace action %v", actions[0])
    	}
    	finalizers := actions[0].(core.CreateAction).GetObject().(*v1.Namespace).Spec.Finalizers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/ActorFactory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.actor;
    
    public interface ActorFactory {
        /**
         * Creates an asynchronous actor for the given target object.
         *
         * @param target The target object.
         * @return The actor.
         */
        Actor createActor(Object target);
    
        /**
         * Creates a synchronous actor for the given target object.
         *
         * @param target The target object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top