Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for inserting (0.26 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "inserting into an undefined property is undefined-safe"() {
            given:
            property.set((Map) null)
            property.insert('k4', '4')
    
            expect:
            assertValueIs(['k4': '4'])
        }
    
        def "inserting after putting an undefined element provider is undefined-safe"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    	// We record the difference by negating j-1 if it is preceded by type S.
    	// Either way, the insertion (into the text[j-1] bucket) is guaranteed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    // end_axis_mask, ellipsis_axis_mask, new_axis_mask, shrink_axis_mask. These
    // masks will complicate the strided_slice computation logic, we can simplify
    // the logic by inserting a reshape op to pad the inputs so strided_slice can
    // be easier to handle.
    //
    // So the graph may looks like below:
    //   original_input -> strided_slice -> output
    //      (transforms)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K 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. 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)
  6. 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)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      [(CanOptimizeIdentityGatherNdOrScatterNdOp $params, $indices, $output)]>;
    
    def ShapeMatchesReduceWithKeepAxes : Constraint<CPred<
      "ShapeMatchesReduceWithKeepAxes($0, $1, $2)">>;
    
    // Fold reshapes re-inserting reduced dimensions into the results of a reduction
    // with `keep_dims=false` by changing it to one using `keep_dims=true`.
    foreach ReduceOp = [TFL_MeanOp, TFL_ReduceMaxOp, TFL_ReduceMinOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    	return sc.slkeys[idx]
    }
    
    // PopulateABIInRegArgOps examines the entry block of the function
    // and looks for incoming parameters that have missing or partial
    // OpArg{Int,Float}Reg values, inserting additional values in
    // cases where they are missing. Example:
    //
    //	func foo(s string, used int, notused int) int {
    //	  return len(s) + used
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.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
    - 92.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // comparison of the result with 0.0. If a compare with zero instruction
    // (e.g. LTDBR) is following one of those instructions, we can use the
    // generated flag and remove the comparison instruction.
    // Note: when inserting Select1 ops we need to ensure they are in the
    // same block as their argument. We could also use @x.Block for this
    // but moving the flag generating value to a different block seems to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top