Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for afterend (0.46 sec)

  1. tensorflow/c/while_loop_test.cc

            TF_NewWhile(graph_, &inputs_[0], inputs_.size(), s_));
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
        ASSERT_EQ(original_graph_description_, GraphDebugString())
            << "TF_NewWhile() altered graph";
    
        params_->name = "test_loop";
    
        // Initialize outputs_ so we can easily detect errors/bugs
        outputs_.resize(ninputs, {nullptr, -1});
      }
    
      void ExpectOK() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    		decoder: json.NewDecoder(r),
    	}
    }
    
    // ReadFrame decodes the next JSON object in the stream, or returns an error. The returned
    // byte slice will be modified the next time ReadFrame is invoked and should not be altered.
    func (r *jsonFrameReader) Read(data []byte) (int, error) {
    	// Return whatever remaining data exists from an in progress frame
    	if n := len(r.remaining); n > 0 {
    		if n <= len(data) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         *
         * <p>The last element of the supplied path is used as the project name. The supplied path is converted to a project
         * directory relative to the root project directory. The project directory can be altered by changing the 'projectDir'
         * property after the project has been included (see {@link ProjectDescriptor#setProjectDir(File)})</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/ipset.go

    		// "KUBE-" to "KUBE-6-". The "KUBE-" prefix is kept for
    		// backward compatibility. The maximum name length of an ipset
    		// is 31 characters which must be taken into account.  The
    		// ipv4 names are not altered to minimize the risk for
    		// problems on upgrades.
    		if strings.HasPrefix(name, "KUBE-") {
    			name = strings.Replace(name, "KUBE-", "KUBE-6-", 1)
    			if len(name) > 31 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    			last = scan.token
    			end = scan.end
    		}
    		// Scan key-type sequences. A key is of length 2 and may be followed
    		// by 0 or more "type" subtags from 3 to the maximum of 8 letters.
    		var last, key []byte
    		for attrEnd := end; len(scan.token) == 2; last = key {
    			key = scan.token
    			end = scan.end
    			for scan.scan(); end < scan.end && len(scan.token) > 2; scan.scan() {
    				end = scan.end
    			}
    			// TODO: check key value validity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. cmd/bucket-object-lock.go

    // returns an error. For objects in "Governance" mode, overwrite is allowed if the retention date has expired.
    // For objects in "Compliance" mode, retention date cannot be shortened, and mode cannot be altered.
    // For objects with legal hold header set, the s3:PutObjectLegalHold permission is expected to be set
    // Both legal hold and retention can be applied independently on an object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/noder/noder.go

    }
    
    // A function named init is a special case.
    // It is called by the initialization before main is run.
    // To make it unique within a package and also uncallable,
    // the name, normally "pkg.init", is altered to "pkg.init.0".
    var renameinitgen int
    
    func Renameinit() *types.Sym {
    	s := typecheck.LookupNum("init.", renameinitgen)
    	renameinitgen++
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				strType := withMaxLength(primitiveType("string", ""), max)
    				beforeLen := int64(2)
    				afterLen := int64(4)
    				objType := objectType(map[string]schema.Structural{
    					"str":    strType,
    					"before": withMaxLength(primitiveType("string", ""), &beforeLen),
    					"after":  withMaxLength(primitiveType("string", ""), &afterLen),
    				})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. docs/LICENSE

    Section 1 -- Definitions.
    
      a. Adapted Material means material subject to Copyright and Similar
         Rights that is derived from or based upon the Licensed Material
         and in which the Licensed Material is translated, altered,
         arranged, transformed, or otherwise modified in a manner requiring
         permission under the Copyright and Similar Rights held by the
         Licensor. For purposes of this Public License, where the Licensed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // an upgrade on the server. Any response will be handled by the intercepting
    // proxy.
    type UpgradeRequestRoundTripper interface {
    	http.RoundTripper
    	// WrapRequest takes a valid HTTP request and returns a suitably altered version
    	// of request with any HTTP level values required to complete the request half of
    	// an upgrade on the server. It does not get a chance to see the response and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top