Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 580 for isInitialized (0.21 sec)

  1. src/runtime/funcdata.h

    // it is therefore usually not necessary to write explicitly.
    #define GO_ARGS	FUNCDATA $FUNCDATA_ArgsPointerMaps, go_args_stackmap(SB)
    
    // GO_RESULTS_INITIALIZED indicates that the assembly function
    // has initialized the stack space for its results and that those results
    // should be considered live for the remainder of the function.
    #define GO_RESULTS_INITIALIZED	PCDATA $PCDATA_StackMapIndex, $1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:28:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginContainerException.java

    import org.codehaus.plexus.component.repository.exception.ComponentRepositoryException;
    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    
    /**
     * Exception which occurs to indicate that the plugin cannot be initialized due
     * to some deeper problem with Plexus. Context information includes the groupId,
     * artifactId, and version for the plugin; at times, the goal name for which
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitializer.java

     */
    public interface BuildInitializer {
        /**
         * Unique and user-friendly ID for the type of the initialized build like 'java-application' or 'kotlin-library'.
         * <p>
         * Users can select the desired type by providing a value of a known ID on the command line.
         */
        String getId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. pkg/proxy/util/nfacct/handler.go

    type netlinkHandler struct {
    	socket *nl.NetlinkSocket
    }
    
    // newNetlinkHandler initializes a netlink socket in the current network namespace and returns
    // an instance of netlinkHandler with the initialized socket.
    func newNetlinkHandler() (handler, error) {
    	socket, err := nl.GetNetlinkSocketAt(netns.None(), netns.None(), unix.NETLINK_NETFILTER)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

            sigsuspend(&mask);
    }
    
    // msanGoSignalThread is the thread ID of the msanGoLoop thread.
    static pthread_t msanGoSignalThread;
    
    // msanGoSignalThreadSet is used to record that msanGoSignalThread
    // has been initialized. This is accessed atomically.
    static int32_t msanGoSignalThreadSet;
    
    // uninit is explicitly poisoned, so that we can make all registers
    // undefined by calling msanGoWait.
    static unsigned long uninit;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/plugins_providers.go

    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    	if featureGate.Enabled(pluginInfo.pluginUnregisterFeature) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

                  doLast {
                    println "value: " + inputFile.text
                    println "reuse: " + Reuse.initialized
                    Reuse.initialized = true
                  }
                }
                class Reuse {
                    public static Boolean initialized = false
                }
            """
    
            then:
            succeeds("myTask")
            output.contains "value: original"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. src/internal/poll/fd_wasip1.go

    	RefCountPtr *int32
    
    	// RefCount is the reference count of Sysfd. When a copy of an FD is made,
    	// it points to the reference count of the original FD instance.
    	RefCount int32
    
    	// Cache for the file type, lazily initialized when Seek is called.
    	Filetype uint32
    
    	// If the file represents a directory, this field contains the current
    	// readdir position. It is reset to zero if the program calls Seek(0, 0).
    	Dircookie uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  tests and run them.  If an output file name root has not been 
     *  specified using CU_set_output_filename(), a generic root will be 
     *  applied.  It is an error to call this function before the CUnit
     *  test registry has been initialized (check by assertion).
     */
    
    CU_EXPORT CU_ErrorCode CU_list_tests_to_file(void);
    /**< 
     *  Generates an xml file containing a list of all tests in all suites 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. 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)
Back to top