Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 579 for holder (0.15 sec)

  1. tensorflow/compiler/aot/codegen_test_h.golden

    // Generated by tfcompile, the TensorFlow graph compiler.  DO NOT EDIT!
    //
    // This header was generated via ahead-of-time compilation of a TensorFlow
    // graph.  An object file corresponding to this header was also generated.
    // This header gives access to the functionality in that object file.
    //
    // clang-format off
    
    #ifndef TFCOMPILE_GENERATED_entry_point_H_  // NOLINT(build/header_guard)
    #define TFCOMPILE_GENERATED_entry_point_H_  // NOLINT(build/header_guard)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            PatternMatcher matcher = copyAction.matcher
    
            ['root/folder1/folder2', 'modules/project1'].each {
                assertMatches matcher, it
            }
    
            ['archive/folder/file', 'root/archives/file', 'root/folder/abc',
             'collections/folder/file', 'root/collections/file', 'archives/collections/file',
             'root/folder/cde'].each {
                assertMatches matcher.negate(), it
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. internal/config/notify/legacy.go

    package notify
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/event/target"
    )
    
    // SetNotifyKafka - helper for config migration from older config.
    func SetNotifyKafka(s config.Config, name string, cfg target.KafkaArgs) error {
    	if !cfg.Enable {
    		return nil
    	}
    
    	if err := cfg.Validate(); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/order.go

    		// but it doesn't. So we use the first statement's position instead.
    		ir.SetPos((*n)[0])
    	}
    	var order orderState
    	order.free = free
    	mark := order.markTemp()
    	order.edge()
    	order.stmtList(*n)
    	order.popTemp(mark)
    	*n = order.out
    }
    
    // exprInPlace orders the side effects in *np and
    // leaves them as the init list of the final *np.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. pkg/volume/hostpath/host_path_test.go

    				t.Errorf("[%d: %q] expected folder, got unexpected: %s", i, tc.name, path)
    			}
    			if oftc.IsFile() {
    				t.Errorf("[%d: %q] expected folder, got unexpected file: %s", i, tc.name, path)
    			}
    			if oftc.IsSocket() {
    				t.Errorf("[%d: %q] expected folder, got unexpected socket file: %s", i, tc.name, path)
    			}
    			if oftc.IsBlock() {
    				t.Errorf("[%d: %q] expected folder, got unexpected block device: %s", i, tc.name, path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. docs/config/README.md

    stale_uploads_expiry            (duration)  set to expire stale multipart uploads older than this values (default: '24h')
    stale_uploads_cleanup_interval  (duration)  set to change intervals when stale multipart uploads are expired (default: '6h')
    delete_cleanup_interval         (duration)  set to change intervals when deleted objects are permanently deleted from ".trash" folder (default: '5m')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    ----
    <1> Generated folder for wrapper files
    <2> Version catalog for dependencies
    <3> Gradle wrapper start scripts
    <4> Settings file to define build name and subprojects
    <5> Build script for `app` subproject
    <6> Default Java source folder for `app` subproject
    <7> Default Java test source folder for `app` subproject
    =====
    
    The `authoring-tutorial` folder is the *root project directory*.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'idea'
     * }
     *
     * idea {
     *   module {
     *     iml {
     *       //if you like to keep *.iml in a secret folder
     *       generateTo = file('secret-modules-folder')
     *
     *       //if you want to mess with the resulting XML in whatever way you fancy
     *       withXml {
     *         def node = it.asNode()
     *         node.appendNode('iLoveGradle', 'true')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/noder/noder.go

    	base.Timer.Start("fe", "parse")
    
    	// Limit the number of simultaneously open files.
    	sem := make(chan struct{}, runtime.GOMAXPROCS(0)+10)
    
    	noders := make([]*noder, len(filenames))
    	for i := range noders {
    		p := noder{
    			err: make(chan syntax.Error),
    		}
    		noders[i] = &p
    	}
    
    	// Move the entire syntax processing logic into a separate goroutine to avoid blocking on the "sem".
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. fess-crawler/src/test/resources/extractor/tar/test.tar

    data/folder/file.html テスト data/file.txt テキスト...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 10K bytes
    - Viewed (0)
Back to top