Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 655 for confuse (0.13 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

                                        const std::string& message);
    
    }  // namespace internal
    
    // The friend relationship of some of these classes is cyclic.
    // If we don't forward declare them the compiler might confuse the classes
    // in friendship clauses with same named classes on the scope.
    class Test;
    class TestCase;
    class TestInfo;
    class UnitTest;
    
    // A class for indicating whether an assertion was successful.  When
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

                                        const std::string& message);
    
    }  // namespace internal
    
    // The friend relationship of some of these classes is cyclic.
    // If we don't forward declare them the compiler might confuse the classes
    // in friendship clauses with same named classes on the scope.
    class Test;
    class TestCase;
    class TestInfo;
    class UnitTest;
    
    // A class for indicating whether an assertion was successful.  When
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    		reducedLimit := fmt.Sprintf(",%s=%d", base.NetLimitGodebug.Name(), n/netTestLimit)
    		os.Setenv("GODEBUG", os.Getenv("GODEBUG")+reducedLimit)
    	}
    
    	// Don't let these environment variables confuse the test.
    	os.Setenv("GOENV", "off")
    	os.Unsetenv("GOFLAGS")
    	os.Unsetenv("GOBIN")
    	os.Unsetenv("GOPATH")
    	os.Unsetenv("GIT_ALLOW_PROTOCOL")
    	os.Setenv("HOME", "/test-go-home-does-not-exist")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    			}
    			newtextp = append(newtextp, ctxt.tramps[i:ntramps]...)
    
    			ctxt.Textp = newtextp
    		}
    	}
    
    	// Add MinLC size after etext, so it won't collide with the next symbol
    	// (which may confuse some symbolizer).
    	sect.Length = va - sect.Vaddr + uint64(ctxt.Arch.MinLC)
    	ldr.SetSymSect(etext, sect)
    	if ldr.SymValue(etext) == 0 {
    		// Set the address of the start/end symbols, if not already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. src/cmd/go/internal/work/exec.go

    			return true
    		}
    	}
    	return false
    }
    
    // cCompilerEnv returns environment variables to set when running the
    // C compiler. This is needed to disable escape codes in clang error
    // messages that confuse tools like cgo.
    func (b *Builder) cCompilerEnv() []string {
    	return []string{"TERM=dumb"}
    }
    
    // mkAbs returns an absolute path corresponding to
    // evaluating f in the directory dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    // gcc to fail.
    func (p *Package) gccErrors(stdin []byte, extraArgs ...string) string {
    	// TODO(rsc): require failure
    	args := p.gccCmd()
    
    	// Optimization options can confuse the error messages; remove them.
    	nargs := make([]string, 0, len(args)+len(extraArgs))
    	for _, arg := range args {
    		if !strings.HasPrefix(arg, "-O") {
    			nargs = append(nargs, arg)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.kt

    // FILE: context.kt
    class Foo {
        fun String.test() {
            var x: Int
    
            fun call(a: Int) {
                consume(a)
                consume(this@Foo)
                consume(this@test)
                x = 42
            }
    
            <caret_context>call(1)
        }
    }
    
    fun consume(obj: Any) {}
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 439 bytes
    - Viewed (0)
  8. src/internal/poll/writev_test.go

    			consume: 0,
    			want:    [][]byte{},
    		},
    	}
    	for i, tt := range tests {
    		in := tt.in
    		poll.Consume(&in, tt.consume)
    		if !reflect.DeepEqual(in, tt.want) {
    			t.Errorf("%d. after consume(%d) = %+v, want %+v", i, tt.consume, in, tt.want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 18:36:28 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  9. src/net/writev_test.go

    			consume: 0,
    			want:    Buffers{},
    		},
    	}
    	for i, tt := range tests {
    		in := tt.in
    		in.consume(tt.consume)
    		if !reflect.DeepEqual(in, tt.want) {
    			t.Errorf("%d. after consume(%d) = %+v, want %+v", i, tt.consume, in, tt.want)
    		}
    	}
    }
    
    func TestBuffers_WriteTo(t *testing.T) {
    	for _, name := range []string{"WriteTo", "Copy"} {
    		for _, size := range []int{0, 10, 1023, 1024, 1025} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/variables/localVariable.kt

    fun test() {
        <expr>val x = 0
        consume(1)</expr>
        consume(x)
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 95 bytes
    - Viewed (0)
Back to top