Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,052 for Initializer (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.cc

      // Only the "tf.AssignVariableOp" patterns inside this initializer function
      // will be searched.
      FuncOp session_init_func_type_restore_op = GetInitializerFunction(
          module_op, /*initializer_type=*/kTfSavedModelInitializerRestoreType);
      if (!session_init_func_type_restore_op) {
        LOG(INFO) << "No session initializer function with type 'restore_op'. No "
                     "variables are saved to checkpoint.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:36:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common_v1.py

          lift variables.
        lift_variables: If false, no variable lifting will be done on the graph.
        include_variables_in_initializers: If false, removes variables in
          initializer functions before lifting variables or adding new variable
          initialization patterns in the initializer function.
      """
    
      # Make LOG(ERROR) in C++ code show up on the console.
      # All `Status` passed around in the C++ API seem to eventually go into
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultPersistentDirectoryCache.java

            this.properties.putAll(properties);
        }
    
        @Override
        protected CacheInitializationAction getInitAction() {
            return new Initializer();
        }
    
        public Properties getProperties() {
            return properties;
        }
    
        private class Initializer implements CacheInitializationAction {
            @Override
            public boolean requiresInitialization(FileLock lock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:20:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue6403.go

    // errorcheck
    
    // Copyright 2014 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.
    
    // Issue 6403: fix spurious 'const initializer is not a constant' error
    
    package p
    
    import "syscall"
    
    const A int = syscall.X // ERROR "undefined: syscall.X|undefined identifier .*syscall.X"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 445 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ManagedModelCreationRuleExtractor.java

                            NodeInitializer initializer = getNodeInitializer(descriptor, modelSchema, nodeInitializerRegistry);
                            for (Map.Entry<ModelActionRole, ModelAction> actionInRole : initializer.getActions(ModelReference.of(modelPath), descriptor).entries()) {
                                ModelActionRole role = actionInRole.getKey();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceDatabase.java

        private void executeInitializers(DataSource dataSource) throws SQLException {
            try (Connection connection = dataSource.getConnection()) {
                for (ConnectionAction<Void> initializer : databaseInitializers) {
                    try {
                        initializer.execute(connection);
                    } catch (SQLException e) {
                        if (e.getErrorCode() == 90096) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilwait "k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/initializer"
    	admissionmetrics "k8s.io/apiserver/pkg/admission/metrics"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildGenerator.java

    import org.gradle.buildinit.plugins.internal.modifiers.Language;
    
    /**
     * Generates a new Gradle build.
     */
    public interface BuildGenerator extends BuildInitializer {
        /**
         * What kind of component does this initializer create?
         */
        ComponentType getComponentType();
    
        /**
         * Does this generator use the given language for production code?
         */
        boolean productionCodeUses(Language language);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue23732.go

    // Copyright 2018 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.
    
    // Issue 23732: Give better details about which struct
    // initializer has the wrong number of values.
    
    package main
    
    type Foo struct {
    	A int
    	B int
    	C interface{}
    	Bar
    }
    
    type Bar struct {
    	A string
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 749 bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbol.kt

            }
    
        override val backingFieldSymbol: KaBackingFieldSymbol?
            get() = withValidityAssertion { null }
    
        override val initializer: KaInitializerValue?
            get() = withValidityAssertion { createKtInitializerValue((psi as? KtProperty)?.initializer, descriptor, analysisContext) }
    
        override val callableId: CallableId?
            get() = withValidityAssertion { descriptor.callableIdIfNotLocal }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top