Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 334 for Mystring (0.23 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

          }
    
          @Test
          @TestMetadata("MyString.kt")
          public void testMyString() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeAlias/missingDependency/MyString.kt");
          }
    
          @Test
          @TestMetadata("NestedAsymmetricAliasOnlyResolveAsymmetricAlias.kt")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/resolver/FirStandaloneNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

          }
    
          @Test
          @TestMetadata("MyString.kt")
          public void testMyString() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeAlias/missingDependency/MyString.kt");
          }
    
          @Test
          @TestMetadata("NestedAsymmetricAliasOnlyResolveAsymmetricAlias.kt")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.8K bytes
    - Viewed (0)
  3. test/gcstring.go

    	time.Sleep(10*time.Millisecond)
    	runtime.GC()
    	runtime.GC()
    	time.Sleep(10*time.Millisecond)
    }
    
    func setup() {
    	var Ts []interface{}
    	buf := make([]byte, 128)
    	
    	for i := 0; i < 10000; i++ {
    		s := string(buf)
    		t := &T{ptr: new(*int)}
    		runtime.SetFinalizer(t.ptr, func(**int) { panic("*int freed too early") })
    		Ts = append(Ts, t)
    		things = append(things, s[len(s):])
    	}
    	
    	things = append(things, Ts...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 872 bytes
    - Viewed (0)
  4. test/ken/string.out

    Ian Lance Taylor <******@****.***> 1326931944 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 00:12:24 UTC 2012
    - 49 bytes
    - Viewed (0)
  5. test/ken/string.go

    	print("\n")
    
    	/* create string with integer constant */
    	c = string('x')
    	if c != "x" {
    		panic("create int " + c)
    	}
    
    	/* create string with integer variable */
    	v := 'x'
    	c = string(v)
    	if c != "x" {
    		panic("create int " + c)
    	}
    
    	/* create string with byte array */
    	var z1 [3]byte
    	z1[0] = 'a'
    	z1[1] = 'b'
    	z1[2] = 'c'
    	c = string(z1[0:])
    	if c != "abc" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/sets/string.go

    // If the value passed in is not actually a map, this will panic.
    func StringKeySet[T any](theMap map[string]T) String {
    	return String(KeySet(theMap))
    }
    
    // Insert adds items to the set.
    func (s String) Insert(items ...string) String {
    	return String(cast(s).Insert(items...))
    }
    
    // Delete removes all items from the set.
    func (s String) Delete(items ...string) String {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/string.kt

     */
    
    package org.gradle.kotlin.dsl.support
    
    import org.gradle.util.internal.TextUtil.convertLineSeparatorsToUnix
    import java.util.Locale
    
    
    fun String.normaliseLineSeparators(): String =
        convertLineSeparatorsToUnix(this)
    
    
    fun String.uppercaseFirstChar(): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 929 bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    // started.
    package cryptobyte // import "golang.org/x/crypto/cryptobyte"
    
    // String represents a string of bytes. It provides methods for parsing
    // fixed-length and length-prefixed values from it.
    type String []byte
    
    // read advances a String by n bytes and returns them. If less than n bytes
    // remain, it returns nil.
    func (s *String) read(n int) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/impl/string.cc

    #include "tensorflow/cc/experimental/libtf/impl/string.h"
    
    #include <unordered_set>
    
    // It is important for the container below to not invalidate pointers to
    // elements when elements are inserted, because the String class stores such
    // pointers. This rules out, for example, absl::flat_hash_set.
    using StringTable = std::unordered_set<std::string>;
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/string.kt

    package org.gradle.kotlin.dsl.fixtures
    
    
    fun <T> Iterable<T>.joinLines(transform: (T) -> String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 157 bytes
    - Viewed (0)
Back to top