Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 346 for initialFiles (0.21 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT void CU_automated_run_tests(void);
    /**< 
     *  Runs CUnit tests using the automated interface.
     *  This function sets appropriate callback functions, initializes the 
     *  test output files, and calls the appropriate functions to list the 
     *  tests and run them.  If an output file name root has not been 
     *  specified using CU_set_output_filename(), a generic root will be 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. internal/lock/lock_nix.go

    // acquire a write lock.
    func TryLockedOpenFile(path string, flag int, perm os.FileMode) (*LockedFile, error) {
    	return lockedOpenFile(path, flag, perm, syscall.LOCK_NB)
    }
    
    // LockedOpenFile - initializes a new lock and protects
    // the file from concurrent access across mount points.
    // This implementation doesn't support all the open
    // flags and shouldn't be considered as replacement
    // for os.OpenFile().
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. src/container/list/list.go

    type List struct {
    	root Element // sentinel list element, only &root, root.prev, and root.next are used
    	len  int     // current list length excluding (this) sentinel element
    }
    
    // Init initializes or clears list l.
    func (l *List) Init() *List {
    	l.root.next = &l.root
    	l.root.prev = &l.root
    	l.len = 0
    	return l
    }
    
    // New returns an initialized list.
    func New() *List { return new(List).Init() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. .github/workflows/codeql-analysis.yml

        # the head of the pull request instead of the merge commit.
        - run: git checkout HEAD^2
          if: ${{ github.event_name == 'pull_request' }}
    
        # Initializes the CodeQL tools for scanning.
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Oct 02 13:22:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/snapshot.go

    	generation int64
    }
    
    var _ framework.SharedLister = &Snapshot{}
    
    // NewEmptySnapshot initializes a Snapshot struct and returns it.
    func NewEmptySnapshot() *Snapshot {
    	return &Snapshot{
    		nodeInfoMap: make(map[string]*framework.NodeInfo),
    		usedPVCSet:  sets.New[string](),
    	}
    }
    
    // NewSnapshot initializes a Snapshot struct and returns it.
    func NewSnapshot(pods []*v1.Pod, nodes []*v1.Node) *Snapshot {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          self, sess: session.Session
      ) -> Tuple[core.Tensor, core.Tensor, core.Tensor]:
        """Creates a simple model that initializes and lookups a vocab table.
    
        This model creates an asset file at "vocab_file.txt" containing
        comma-separated vocabularies.  It also initializes a `StaticVocabularyTable`
        and performs a lookup with the input vocabs, which is a 1D tensor of
        strings.
    
        Args:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

     */
    public enum ModelActionRole {
        Discover(ModelNode.State.Discovered, false), // Defines all projections for the node
        Create(ModelNode.State.Created, false), // Initializes the node
        Defaults(ModelNode.State.DefaultsApplied, true), // Allows a mutation to setup default values for an element
        Initialize(ModelNode.State.Initialized, true), // Mutation action provided when an element is defined
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. pkg/kubelet/oom/oom_watcher_linux.go

    }
    
    var _ streamer = &oomparser.OomParser{}
    
    type realWatcher struct {
    	recorder    record.EventRecorder
    	oomStreamer streamer
    }
    
    var _ Watcher = &realWatcher{}
    
    // NewWatcher creates and initializes a OOMWatcher backed by Cadvisor as
    // the oom streamer.
    func NewWatcher(recorder record.EventRecorder) (Watcher, error) {
    	// for test purpose
    	_, ok := recorder.(*record.FakeRecorder)
    	if ok {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 23:17:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h

    // quantization summary from a quantized `ModuleOp` and emit it in a human- and
    // machine-readable format.
    class QuantizationReport {
     public:
      QuantizationReport() = default;
    
      // Initializes `QuantizationReport` by collecting `QuantizationResults` from
      // `module_op`.
      explicit QuantizationReport(ModuleOp module_op);
    
      // Adds a `QuantizationResult` to the report.
      void AddQuantizationResult(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. plugin/pkg/admission/podtolerationrestriction/admission.go

    	}
    
    	obj := a.GetObject()
    	_, ok := obj.(*api.Pod)
    	if !ok {
    		klog.Errorf("expected pod but got %s", a.GetKind().Kind)
    		return true
    	}
    
    	return false
    }
    
    // NewPodTolerationsPlugin initializes a Plugin
    func NewPodTolerationsPlugin(pluginConfig *pluginapi.Configuration) *Plugin {
    	return &Plugin{
    		Handler:      admission.NewHandler(admission.Create, admission.Update),
    		pluginConfig: pluginConfig,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 29 20:07:59 UTC 2020
    - 8.3K bytes
    - Viewed (0)
Back to top