Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 432 for inserting (0.15 sec)

  1. src/compress/flate/deflate.go

    				}
    				d.index = index
    
    				if d.fastSkipHashing == skipNever {
    					d.byteAvailable = false
    					d.length = minMatchLength - 1
    				}
    			} else {
    				// For matches this long, we don't bother inserting each individual
    				// item into the table.
    				d.index += d.length
    			}
    			if len(d.tokens) == maxFlateBlockTokens {
    				// The block includes the current character
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                    type: string
                  chainInsertMode:
                    description: 'ChainInsertMode controls whether Felix hooks the kernel’s
                      top-level iptables chains by inserting a rule at the top of the
                      chain or by appending a rule at the bottom. insert is the safe default
                      since it prevents Calico’s rules from being bypassed. If you switch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  3. src/os/os_windows_test.go

    	copy(rdb.detail[:], byteblob)
    
    	return createDirLink(link, &rdb)
    }
    
    func TestDirectoryJunction(t *testing.T) {
    	var tests = []dirLinkTest{
    		{
    			// Create link similar to what mklink does, by inserting \??\ at the front of absolute target.
    			name:         "standard",
    			isMountPoint: true,
    			mklink: func(link, target string) error {
    				var t reparseData
    				t.addSubstituteName(`\??\` + target)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    //        according to its size (8-bytes for double words, 4-bytes for words
    //        and so on).
    //
    //    We can always work around these by inserting LARL instructions (load address
    //    relative long) in the assembler, but typically this results in worse code
    //    generation because the address can't be re-used. Inserting instructions in the
    //    assembler also means clobbering the temp register and it is a long-term goal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // initially seeded with ops from the input MLIR graph that have the
      // _embedding_pipelining="backward" attribute which is set by the TF2
      // Embedding API.
      //
      // Since we're inserting a replication boundary around the backward pass
      // function, we'll also need to make sure TPUReplicatedInputOp and
      // TPUReplicatedOutputOp ops are inserted as necessary.
    
      // First, walk the Ops dependencies.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    }
    
    // return URL for inserting bucket notification.
    func getPutNotificationURL(endPoint, bucketName string) string {
    	queryValue := url.Values{}
    	queryValue.Set("notification", "")
    	return makeTestTargetURL(endPoint, bucketName, "", queryValue)
    }
    
    // return URL for inserting bucket policy.
    func getPutPolicyURL(endPoint, bucketName string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. src/slices/slices_test.go

    			}
    		})
    		if n > count/2 {
    			t.Errorf("too many allocations inserting %d elements: got %v, want less than %d", count, n, count/2)
    		}
    	}
    }
    
    func TestInsertOverlap(t *testing.T) {
    	const N = 10
    	a := make([]int, N)
    	want := make([]int, 2*N)
    	for n := 0; n <= N; n++ { // length
    		for i := 0; i <= n; i++ { // insertion point
    			for x := 0; x <= N; x++ { // start of inserted data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        protected void insert(final String entryDN, final Attributes entry, final Supplier<Hashtable<String, String>> envSupplier) {
            try (DirContextHolder holder = getDirContext(envSupplier)) {
                logger.debug("Inserting {}", entryDN);
                holder.get().createSubcontext(entryDN, entry);
            } catch (final NamingException e) {
                throw new LdapOperationException("Failed to add " + entryDN, e);
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      return changed;
    }
    
    bool ShapeInference::InferShapeForCast(Operation* op) {
      DCOMMENT_OP(op, "Inferring shape for ");
      Value result = op->getResult(0);
      if (!CanBeRefined(result.getType())) return false;
    
      // Avoid inserting a cast where no users types could be refined (e.g., where
      // there would need to be a cast inserted for every user again).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. tensorflow/c/eager/tape.h

      tensors.reserve(output_tensors.size());
      for (const TapeTensor& o : output_tensors) {
        // Note: the tensor can have already been watched and hence be in the tape,
        // so we cannot check that we're inserting it here.
        tensor_tape_[o.GetID()] = op_id;
        tensor_usage_[o.GetID()] = 1;
        tensors.push_back(o);
      }
      op_tape_[op_id] = OpTapeEntry<BackwardFunction, TapeTensor>{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
Back to top