Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 151 for partitioned (0.25 sec)

  1. src/net/http/cookie.go

    				if err != nil {
    					c.Expires = time.Time{}
    					break
    				}
    			}
    			c.Expires = exptime.UTC()
    			continue
    		case "path":
    			c.Path = val
    			continue
    		case "partitioned":
    			c.Partitioned = true
    			continue
    		}
    		c.Unparsed = append(c.Unparsed, parts[i])
    	}
    	return c, nil
    }
    
    // readSetCookies parses all "Set-Cookie" values from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

    }
    }  // namespace
    
    // Rewrites unpartitioned resource reads and writes to partitioned resource
    // reads and writes. The TPU computation from the frontend is generated in such
    // a way that resource operations operate on the unpartitioned resource handle
    // (from a `tf.TPUReplicatedInput`). This results in resource reads and writes
    // on the unpartitioned resource handle post resource op decomposition/lifting.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    using PartitionedClusterOutputMap = absl::flat_hash_map<
        uint64_t, llvm::SmallVector<mlir::TF::TPUPartitionedOutputV2Op, 8>>;
    
    // Returns the partitioned output ops from the cluster if there are any,
    // along with any single user identity ops between them. Not all outputs
    // of a cluster must be partitioned, so the output is a map from cluster
    // output ids to ops.
    std::tuple<PartitionedClusterOutputMap,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  4. src/net/http/cookie_test.go

    		"cookie-15=samesite-none; SameSite=None",
    	},
    	{
    		&Cookie{Name: "cookie-16", Value: "partitioned", SameSite: SameSiteNoneMode, Secure: true, Path: "/", Partitioned: true},
    		"cookie-16=partitioned; Path=/; Secure; SameSite=None; Partitioned",
    	},
    	// The "special" cookies have values containing commas or spaces which
    	// are disallowed by RFC 6265 but are common in the wild.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/sort/zsortinterface.go

    			pdqsort(data, mid+1, b, limit)
    			b = mid
    		}
    	}
    }
    
    // partition does one quicksort partition.
    // Let p = data[pivot]
    // Moves elements in data[a:b] around, so that data[i]<p and data[j]>=p for i<newpivot and j>newpivot.
    // On return, data[newpivot] = p
    func partition(data Interface, a, b, pivot int) (newpivot int, alreadyPartitioned bool) {
    	data.Swap(a, pivot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  6. src/sort/zsortfunc.go

    }
    
    // partitionEqual_func partitions data[a:b] into elements equal to data[pivot] followed by elements greater than data[pivot].
    // It assumed that data[a:b] does not contain elements smaller than the data[pivot].
    func partitionEqual_func(data lessSwap, a, b, pivot int) (newpivot int) {
    	data.Swap(a, pivot)
    	i, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned
    
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  7. src/slices/zsortanyfunc.go

    	const maxInsertion = 12
    
    	var (
    		wasBalanced    = true // whether the last partitioning was reasonably balanced
    		wasPartitioned = true // whether the slice was already partitioned
    	)
    
    	for {
    		length := b - a
    
    		if length <= maxInsertion {
    			insertionSortCmpFunc(data, a, b, cmp)
    			return
    		}
    
    		// Fall back to heapsort if too many bad choices were made.
    		if limit == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. src/slices/zsortordered.go

    	const maxInsertion = 12
    
    	var (
    		wasBalanced    = true // whether the last partitioning was reasonably balanced
    		wasPartitioned = true // whether the slice was already partitioned
    	)
    
    	for {
    		length := b - a
    
    		if length <= maxInsertion {
    			insertionSortOrdered(data, a, b)
    			return
    		}
    
    		// Fall back to heapsort if too many bad choices were made.
    		if limit == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

      added_func_op.setName(builder.getStringAttr(function_name));
      added_call_op.setCallee(builder.getStringAttr(function_name));
    }
    
    // Raises partitioned sequential `Operations` from a block to a new function
    // definition. `Operations` are partitioned into classes from the cartesian
    // product of possible devices and inference datatypes. For example, we might
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/sort/gen_sort_variants.go

    			pdqsort{{.FuncSuffix}}(data, mid+1, b, limit {{.ExtraArg}})
    			b = mid
    		}
    	}
    }
    
    // partition{{.FuncSuffix}} does one quicksort partition.
    // Let p = data[pivot]
    // Moves elements in data[a:b] around, so that data[i]<p and data[j]>=p for i<newpivot and j>newpivot.
    // On return, data[newpivot] = p
    func partition{{.FuncSuffix}}{{.TypeParam}}(data {{.DataType}}, a, b, pivot int {{.ExtraParam}}) (newpivot int, alreadyPartitioned bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top