Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,645 for appears (0.18 sec)

  1. src/cmd/go/testdata/script/build_pgo_auto.txt

    # check that pgo applied to dependencies
    stderr 'compile.*-p test/dep.*-pgoprofile=.*'
    
    # check that pgo appears in build info
    # N.B. we can't start the stdout check with -pgo because the script assumes that
    # if the first arg starts with - it is a grep flag.
    stderr 'build\\t-pgo=.*default\.pgo'
    
    # check also that -pgo appears with the other flags, before non-flag settings
    ! stderr 'build\\t[A-Za-z].*build\\t-pgo'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/go/ast/issues_test.go

    		{`// Package p doc.
    package p
    // Code generated by gen. DO NOT EDIT.
    `, false},
    		// Special comment appears inside string literal.
    		{`// Package p doc.
    package p
    const c = "` + "`" + `
    // Code generated by gen. DO NOT EDIT.
    ` + "`" + `
    `, false},
    		// Special comment appears properly.
    		{`// Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 13:57:33 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/AccessorTypePrecedenceTest.kt

        @Test
        fun `classes before interfaces`() {
            assertAccessorTypePrecedenceOf<ChooseA>(
                ChooseA::class,
                Base::class,
                Core::class,
                A::class, // because it appears first than B when walking up the tree starting at ChooseA
                B::class,
                ExtensionAware::class
            )
        }
    
        @Test
        fun `classes before interfaces, subtypes before supertypes`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_issue54048.txt

    ! go list -m -json all
    stderr 'go: module example.com/foo appears multiple times in workspace'
    
    -- go.work --
    go 1.18
    
    use (
            ./a
            ./b
    )
    -- a/go.mod --
    module example.com/foo
    
    go 1.18
    
    -- b/go.mod --
    module example.com/foo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 29 14:48:48 UTC 2022
    - 246 bytes
    - Viewed (0)
  5. src/internal/abi/symtab.go

    type FuncFlag uint8
    
    const (
    	// FuncFlagTopFrame indicates a function that appears at the top of its stack.
    	// The traceback routine stop at such a function and consider that a
    	// successful, complete traversal of the stack.
    	// Examples of TopFrame functions include goexit, which appears
    	// at the top of a user goroutine stack, and mstart, which appears
    	// at the top of a system goroutine stack.
    	FuncFlagTopFrame FuncFlag = 1 << iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/runtime/traceback_system_test.go

    	child5()
    }
    
    //go:noinline
    func child5() { // test trace through second of two call instructions
    	child6bad()
    	child6() // appears in stack trace
    }
    
    //go:noinline
    func child6bad() {
    }
    
    //go:noinline
    func child6() { // test trace through first of two call instructions
    	child7() // appears in stack trace
    	child7bad()
    }
    
    //go:noinline
    func child7bad() {
    }
    
    //go:noinline
    func child7() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_install_hint.txt

    ! stderr 'to add it:'...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 11 21:43:54 UTC 2021
    - 239 bytes
    - Viewed (0)
  8. proguard/cache.pro

    # Striped64 uses this
    -dontwarn sun.misc.Unsafe
    
    # Striped64 appears to make some assumptions about object layout that
    # really might not be safe. This should be investigated.
    -keepclassmembers class com.google.common.cache.Striped64 {
      *** base;
      *** busy;
    }
    -keepclassmembers class com.google.common.cache.Striped64$Cell {
      <fields>;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 341 bytes
    - Viewed (0)
  9. proguard/hash.pro

    # LittleEndianByteArray uses this
    -dontwarn sun.misc.Unsafe
    
    # Striped64 appears to make some assumptions about object layout that
    # really might not be safe. This should be investigated.
    -keepclassmembers class com.google.common.hash.Striped64 {
      *** base;
      *** busy;
    }
    -keepclassmembers class com.google.common.hash.Striped64$Cell {
      <fields>;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 351 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger_test.cc

      // Both strings do not appear in any module.
      setenv("MLIR_BRIDGE_LOG_STRING_FILTER", "func @main(%arg0:tensor;XXX", 1);
      BridgeLoggerConfig logger_config2;
      EXPECT_FALSE(
          logger_config2.ShouldPrint(dummy_pass.get(), mlir_module_with_add.get()));
      EXPECT_FALSE(
          logger_config2.ShouldPrint(dummy_pass.get(), mlir_module_with_sub.get()));
    
      // String appears in one module but not in the other.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top