Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 136 for Ordinary (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    // Copyright 2009,2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // OpenBSD system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. src/go/types/infer.go

    	assert(params.Len() == len(args))
    
    	// If we already have all type arguments, we're done.
    	if len(targs) == n && !containsNil(targs) {
    		return targs
    	}
    
    	// If we have invalid (ordinary) arguments, an error was reported before.
    	// Avoid additional inference errors and exit early (go.dev/issue/60434).
    	for _, arg := range args {
    		if arg.mode == invalid {
    			return nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/instantiate.go

    		// If V is strictly comparable, we're done.
    		if comparable(V, false /* strict comparability */, nil, nil) {
    			return true
    		}
    		// For constraint satisfaction, use dynamic (spec) comparability
    		// so that ordinary, non-type parameter interfaces implement comparable.
    		if constraint && comparable(V, true /* spec comparability */, nil, nil) {
    			// V is comparable if we are at Go 1.20 or higher.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/go/types/instantiate.go

    		// If V is strictly comparable, we're done.
    		if comparable(V, false /* strict comparability */, nil, nil) {
    			return true
    		}
    		// For constraint satisfaction, use dynamic (spec) comparability
    		// so that ordinary, non-type parameter interfaces implement comparable.
    		if constraint && comparable(V, true /* spec comparability */, nil, nil) {
    			// V is comparable if we are at Go 1.20 or higher.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/download.go

    module if it is at 'go 1.17' or higher, or all transitively-required modules
    if at 'go 1.16' or lower.
    
    The go command will automatically download modules as needed during ordinary
    execution. The "go mod download" command is useful mainly for pre-filling
    the local cache or to compute the answers for a Go module proxy.
    
    By default, download writes nothing to standard output. It may print progress
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

      // fixture here.
    };
    
    class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
      // The usual test fixture members go here too.
    };
    
    TEST_F(BaseTest, HasFoo) {
      // This is an ordinary non-parameterized test.
    }
    
    TEST_P(DerivedTest, DoesBlah) {
      // GetParam works just the same here as if you inherit from TestWithParam.
      EXPECT_TRUE(foo.Blah(GetParam()));
    }
    
    #endif  // 0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  7. src/syscall/exec_plan9.go

    func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, handle uintptr, err error) {
    	pid, err = startProcess(argv0, argv, attr)
    	return pid, 0, err
    }
    
    // Ordinary exec.
    func Exec(argv0 string, argv []string, envv []string) (err error) {
    	if envv != nil {
    		r1, _, _ := RawSyscall(SYS_RFORK, RFCENVG, 0, 0)
    		if int32(r1) == -1 {
    			return NewError(errstr())
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

      // fixture here.
    };
    
    class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
      // The usual test fixture members go here too.
    };
    
    TEST_F(BaseTest, HasFoo) {
      // This is an ordinary non-parameterized test.
    }
    
    TEST_P(DerivedTest, DoesBlah) {
      // GetParam works just the same here as if you inherit from TestWithParam.
      EXPECT_TRUE(foo.Blah(GetParam()));
    }
    
    #endif  // 0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    // the Go spec, for simplicity, and for improved robustness in the presence
    // of syntax errors. For instance, in method declarations, the receiver is
    // treated like an ordinary parameter list and thus may contain multiple
    // entries where the spec permits exactly one. Consequently, the corresponding
    // field in the AST (ast.FuncDecl.Recv) field is not restricted to one entry.
    package parser
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build aix
    
    // Aix system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and
    // wrap it in our own nicer implementation.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top