Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 593 for isInitialized (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

      if (!op->hasAttrOfType<StringAttr>(kSharedNameAttr)) return "";
      return op->getAttrOfType<StringAttr>(kSharedNameAttr).getValue();
    }
    
    // Checks if the HashTable is initialized. This function assumes that the
    // HashTable is initialized if it appears in the initializer since it can't
    // check the actual value.
    bool IsResourceInitialized(ModuleOp module_op, Operation* hash_table) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java

     * Get rid of them after debugging
     *
     */
    @Deprecated
    public class MetadataResolutionResult {
        MetadataTreeNode treeRoot;
    
        /**
         * these components are initialized on demand by
         * explicit call of the initTreeProcessing()
         */
        ClasspathTransformation classpathTransformation;
    
        GraphConflictResolver conflictResolver;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Striped64.java

     * so.
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    ****
    **In this section you will:**
    
    - See available tasks
    - Run a task and inspect the results
    - Understand tasks
    - Explore task dependencies
    ****
    
    [[part2_begin]]
    == Step 0. Before you Begin
    
    1. You initialized your Java app in <<part1_gradle_init.adoc#part1_begin,part 1>>.
    
    == Step 1. Viewing available Tasks
    A _task_ is a basic unit of work that can be done by Gradle as part of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4JUnitIntegrationTest.groovy

                    }
    
                    @Test
                    public void classUnderTestIsLoadedOnlyByRunner(){
                        // The CustomRunner class will fail this test if this class is initialized before its
                        // run method is triggered.
                    }
                }
            """.stripIndent()
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. cmd/kubelet/app/plugins.go

    	allPlugins := []volume.VolumePlugin{}
    
    	// The list of plugins to probe is decided by the kubelet binary, not
    	// by dynamic linking or other "magic".  Plugins will be analyzed and
    	// initialized later.
    	//
    	// Kubelet does not currently need to configure volume plugins.
    	// If/when it does, see kube-controller-manager/app/plugins.go for example of using volume.VolumeConfig
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/runtime/HACKING.md

    2. If the memory is reused, the heap pointers must be zero-initialized
       before they become visible as GC roots. Otherwise, the GC may
       observe stale heap pointers. See "Zero-initialization versus
       zeroing".
    
    Zero-initialization versus zeroing
    ==================================
    
    There are two types of zeroing in the runtime, depending on whether
    the memory is already initialized to a type-safe state.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/runtime/os_aix.go

    	miniterrno()
    
    	ncpu = int32(sysconf(__SC_NPROCESSORS_ONLN))
    	physPageSize = sysconf(__SC_PAGE_SIZE)
    }
    
    // newosproc0 is a version of newosproc that can be called before the runtime
    // is initialized.
    //
    // This function is not safe to use after initialization as it does not pass an M as fnarg.
    //
    //go:nosplit
    func newosproc0(stacksize uintptr, fn *funcDescriptor) {
    	var (
    		attr pthread_attr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. cmd/server-main.go

    		// if all sub-systems initialized successfully return right away
    		err := initConfigSubsystem(ctx, newObject)
    		if err == nil {
    			// All successful return.
    			if globalIsDistErasure {
    				// These messages only meant primarily for distributed setup, so only log during distributed setup.
    				logger.Info("All MinIO sub-systems initialized successfully in %s", time.Since(t1))
    			}
    			return nil
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			// In this case, the kubelet should not mistakenly think that
    			// the newly created podSandbox has been initialized.
    		default:
    			// Ignore other states
    		}
    		if podHasInitialized {
    			break
    		}
    	}
    
    	// isPreviouslyInitialized indicates if the current init container is
    	// previously initialized.
    	isPreviouslyInitialized := podHasInitialized
    	restartOnFailure := shouldRestartOnFailure(pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top