Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 157 for concatenation (0.24 sec)

  1. android/guava/src/com/google/common/hash/Hasher.java

     *
     * <p>If you wish to avoid this, you should either prepend or append the size of each chunk. Keep in
     * mind that when dealing with char sequences, the encoded form of two concatenated char sequences
     * is not equivalent to the concatenation of their encoded form. Therefore, {@link
     * #putString(CharSequence, Charset)} should only be used consistently with <i>complete</i>
     * sequences and not broken into chunks.
     *
     * @author Kevin Bourrillion
     * @since 11.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     *
     * <h3>Calculated read-only properties</h3>
     * <p>
     * Managed types can contain getter methods that return calculated values, based on other properties.
     * For example, a “name” property may return the concatenation of a “firstName” and “lastName” property.
     * When using Java 8 or later, such properties can be implemented as interface default methods.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    		re.Op = OpLiteral
    		re.Rune = re.Rune[:1]
    		re.Flags = p.flags | FoldCase
    	} else {
    		// Incremental concatenation.
    		p.maybeConcat(-1, 0)
    	}
    
    	p.stack = append(p.stack, re)
    	p.checkLimits(re)
    	return re
    }
    
    // maybeConcat implements incremental concatenation
    // of literal runes into string nodes. The parser calls this
    // before each push, so only the top fragment of the stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_device_ops.h

    // and write the tensors they access in order to concatenate them into a batch.
    // We would need either to call out to an XLA computation to perform the
    // concatenation, or we would need to refactor those kernels so the splitting
    // or merging is done in a separate operator that can be compiled.
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        serialization.
    
        This Op will restore the tensors asynchronously. There are N restored tensors
        corresponding to N $var_handle. Each restored tensor is given a unique name,
        typically a concatenation of `container_name` and `shared_name` from a `var_handle`.
        The runtime shall handle the possibility that the tensors are not ready when requested
        because the tensors are loaded asynchronously.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Hasher.java

     *
     * <p>If you wish to avoid this, you should either prepend or append the size of each chunk. Keep in
     * mind that when dealing with char sequences, the encoded form of two concatenated char sequences
     * is not equivalent to the concatenation of their encoded form. Therefore, {@link
     * #putString(CharSequence, Charset)} should only be used consistently with <i>complete</i>
     * sequences and not broken into chunks.
     *
     * @author Kevin Bourrillion
     * @since 11.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/shake.go

    type cshakeState struct {
    	*state // SHA-3 state context and Read/Write operations
    
    	// initBlock is the cSHAKE specific initialization set of bytes. It is initialized
    	// by newCShake function and stores concatenation of N followed by S, encoded
    	// by the method specified in 3.3 of [1].
    	// It is stored here in order for Reset() to be able to put context into
    	// initial state.
    	initBlock []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/test2json/main.go

    // (standard output and standard error merged together). The output is
    // unmodified except that invalid UTF-8 output from a test is coerced
    // into valid UTF-8 by use of replacement characters. With that one exception,
    // the concatenation of the Output fields of all output events is the exact
    // output of the test execution.
    //
    // When a benchmark runs, it typically produces a single line of output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/timings.go

    	t.list = append(t.list, timestamp{time.Now(), strings.Join(labels, ":"), start})
    }
    
    // Start marks the beginning of a new phase and implicitly stops the previous phase.
    // The phase name is the colon-separated concatenation of the labels.
    func (t *Timings) Start(labels ...string) {
    	t.append(labels, true)
    }
    
    // Stop marks the end of a phase and implicitly starts a new phase.
    // The labels are added to the labels of the ended phase.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            '_a((, ) a b c)'       | '_a'      | [tokens('(,) a b c')]
            'func( (a) ( b ))'     | 'func'    | [tokens('(a)(b)')]
        }
    
        def "finds object-like macro directive whose value is token concatenation"() {
            when:
            sourceFile << """
    #define SOME_STRING ${value}
    """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
Back to top