Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,120 for promises (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package promise
    
    import (
    	"context"
    	"os"
    	"sync"
    	"testing"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/util/flowcontrol/counter"
    	"k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise"
    	testeventclock "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock"
    	"k8s.io/klog/v2"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/async_while.mlir

    }
    
    // CHECK-LABEL: func.func private @"map/while_body/TfMlrtAsyncWhileBody"(%arg0: !mlrt.promise, %arg1: !mlrt.future, %arg2: !mlrt.promise, %arg3: !mlrt.future, %arg4: !mlrt.promise, %arg5: tensor<i32>, %arg6: tensor<?x!tf_type.resource>, %arg7: tensor<*xf32>) {
    // CHECK-NEXT:    %cst = "tf.Const"() <{value = dense<1> : tensor<i32>}> : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td

      }];
    }
    
    def MlrtPromiseType : DialectType<Mlrt_Dialect,
        CPred<"$_self.isa<::mlrt::compiler::PromiseType>()">, "!mlrt.promise type">,
        BuildableType<"$_builder.getType<::mlrt::compiler::PromiseType>()"> {
      let description = [{
        `!mlrt.promise type` represents a C++ mlrt::Promise.
      }];
    }
    
    def MlrtAsyncHandleType : DialectType<Mlrt_Dialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/profile-list.go

    		return err
    	}
    	if len(profiles) == 0 {
    		cmd.Println("No profiles available.")
    	} else {
    		cmd.Println("Istio configuration profiles:")
    		sort.Strings(profiles)
    		for _, profile := range profiles {
    			cmd.Printf("    %s\n", profile)
    		}
    	}
    
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

                stringInterner
            );
        }
    
        @Provides
        FileAccessTimeJournal createFileAccessTimeJournal() {
            return new ModificationTimeFileAccessTimeJournal();
        }
    
        @Provides
        ExecutorFactory createExecutorFactory() {
            return new DefaultExecutorFactory();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedGlobalScopeServices.java

        }
    
        @Provides
        Clock createClock() {
            return Time.clock();
        }
    
        @Provides
        CrossBuildInMemoryCacheFactory createCrossBuildInMemoryCacheFactory(ListenerManager listenerManager) {
            return new DefaultCrossBuildInMemoryCacheFactory(listenerManager);
        }
    
        @Provides
        NamedObjectInstantiator createNamedObjectInstantiator(CrossBuildInMemoryCacheFactory cacheFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/validation/validation_test.go

    	validPlugins := validConfig.DeepCopy()
    	validPlugins.Profiles[0].Plugins.Score.Enabled = append(validPlugins.Profiles[0].Plugins.Score.Enabled, config.Plugin{Name: "PodTopologySpread", Weight: 2})
    
    	invalidPlugins := validConfig.DeepCopy()
    	invalidPlugins.Profiles[0].Plugins.Score.Enabled = append(invalidPlugins.Profiles[0].Plugins.Score.Enabled, config.Plugin{Name: "AzureDiskLimits"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

      let summary = "Set a tensor in a promise";
    
      let description = [{
        Set a tensor in a promise.
    
        $promise: A value of type !mlrt.promise. The underlying value will always be a tensorflow tensor.
        $tensor: A tensorflow tensor.
      }];
    
      let arguments = (ins
        MlrtPromiseType:$promise,
        TF_Tensor:$tensor
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileSelector.java

    /**
     * Calculates the active profiles among a given collection of profiles.
     *
     */
    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: Tue Nov 07 08:20:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

        }
    
        @Provides
        protected ModelRuleSourceDetector createModelRuleSourceDetector() {
            return new ModelRuleSourceDetector();
        }
    
        @Provides
        protected ImportsReader createImportsReader() {
            return new DefaultImportsReader();
        }
    
        @Provides
        StringInterner createStringInterner() {
            return new StringInterner();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top