Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for Tstring (0.14 sec)

  1. src/cmd/compile/internal/types/alg.go

    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    	AMEM64
    	AMEM128
    	ASTRING
    	AINTER
    	ANILINTER
    	AFLOAT32
    	AFLOAT64
    	ACPLX64
    	ACPLX128
    	ASPECIAL // Type needs special comparison/hashing functions.
    )
    
    // Most kinds are priority 0. Higher numbers are higher priority, in that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/mangling_util.cc

    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/utils/mangling_util.h"
    
    #include <cstring>
    #include <string>
    
    #include "absl/strings/match.h"
    #include "absl/strings/str_cat.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/parse_text_proto.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/framework/tensor_shape.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            "[s1, s2]"            | { property().value(["s1, s2"]) }               || "$collectionName(class ${String.name}, [s1, s2])"
            "s1 + s2"             | { property().tap { add("s1"); add("s2") } }    || "$collectionName(class ${String.name}, [s1] + [s2])"
            "provider {s1}"       | { property().tap { add(Providers.of("s1")) } } || "$collectionName(class ${String.name}, item(fixed(class ${String.name}, s1)))"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

            result.toString() == "line 1"
    
            result.setLength(0)
            reader.readNextLine(result)
            result.toString() == ""
    
    
            result.setLength(0)
            reader.readNextLine(result)
            result.toString() == "line 2"
    
            !reader.readNextLine(result)
    
            where:
            eol << ['\n', '\r', '\r\n']
        }
    
        def "consumes quoted strings"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppToolChainChangesIntegrationTest.groovy

            where:
            toolChains << toolChainPairs
            toolChainBefore = toolChains[0]
            toolChainAfter = toolChains[1]
        }
    
        private static GString buildScriptForToolChains(InstalledToolChain before, InstalledToolChain after) {
            """
                allprojects {
                    apply plugin: ${before.pluginClass}
                    apply plugin: ${after.pluginClass}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexerTest.groovy

        }
    
        def javadocTagCanContainEOLChars() {
            when:
            lexer.pushText(" * {@link #Something(Object,\n * String\n * }")
            lexer.visit(visitor)
    
            then:
            1 * visitor.onStartJavadocTag('link')
            1 * visitor.onText('#Something(Object,\nString\n')
            1 * visitor.onEndJavadocTag('link')
            1 * visitor.onEnd()
            0 * visitor._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/spring-boot-application/src/main/groovy/com.example.spring-boot-application.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

            final String description
    
            VarInitializer(String description) {
                this.description = description
            }
    
            String getGroovy(List<String> cmd) {
                throw new UnsupportedOperationException()
            }
    
            String getJava(List<String> cmd) {
                throw new UnsupportedOperationException()
            }
    
            String getKotlin(List<String> cmd) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/field/fe_test.go

    		t.Errorf("sqrtM1 is %v, expected %v", sqrtM1, exp)
    	}
    	// d is in the parent package, and we don't want to expose d or fromDecimal.
    	// dString := "37095705934669439343138083508754565189542113879843219016388785533085940283555"
    	// if exp := new(Element).fromDecimal(dString); d.Equal(exp) != 1 {
    	// 	t.Errorf("d is %v, expected %v", d, exp)
    	// }
    }
    
    func TestSetBytesRoundTripEdgeCases(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginUseScriptBlockMetadataCompiler.java

    public class PluginUseScriptBlockMetadataCompiler {
    
        public static final String NEED_SINGLE_BOOLEAN = "argument list must be exactly 1 literal boolean";
        public static final String NEED_LITERAL_STRING = "argument list must be exactly 1 literal String or String with property replacement";
        public static final String NEED_INTERPOLATED_STRING = "argument list must be exactly 1 literal String or String with property replacement";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 28 01:30:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top