Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,601 for Here (0.04 sec)

  1. .github/PULL_REQUEST_TEMPLATE.md

    <!--  Thanks for sending a pull request!  Here are some tips for you:
    
    1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide/first-contribution.md#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 01 08:59:21 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. src/go/ast/issues_test.go

    		{`// Package p doc comment goes here.
    //
    	// Code generated by gen. DO NOT EDIT.
    package p
    
    ... `, true},
    		// Special comment has unwanted spaces after "DO NOT EDIT."
    		{`// Copyright 2019 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.
    
    // Package p doc comment goes here.
    //
    // Code generated by gen. DO NOT EDIT. 
    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. src/math/tanh.go

    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    //
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/README.adoc

    IMPORTANT: Test Suites are an link:{userManualPath}/feature_lifecycle.html#sec:incubating_state[incubating] feature, and the details described here may change.
    
    Here, the link:{userManualPath}/jvm_test_suite_plugin.html[Test Suite Plugin] creates an additional source set _integrationTest_ with a `module-info.java`.
    
    
    ```
    src
    └── integrationTest
        └── java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/internal/poll/splice_linux.go

    		// because it could return EAGAIN ceaselessly when the read end of the pipe is empty,
    		// but this shouldn't be a concern here, since the pipe buffer must contain inPipe size of
    		// data on the basis of the workflow in Splice.
    		n, err := splice(sock.Sysfd, pipefd, inPipe, spliceNonblock)
    		if err == syscall.EINTR {
    			continue
    		}
    		// Here, the condition n == 0 && err == nil should never be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

            ServiceRegistryBuilder builder = ServiceRegistryBuilder.builder().displayName("Global services");
            // Should reuse `GlobalScopeServices` here, however this requires a bunch of stuff in order to discover the plugin service registries
            // For now, re-implement the discovery here
            builder.provider(new ServiceRegistrationProvider() {
                @SuppressWarnings("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. ci/official/utilities/code_check_changed_files.bats

    # Note: this is excluded on the full code base, since any submitted code must
    # have passed Google's internal style guidelines.
    @test "Check buildifier formatting on BUILD files" {
        echo "buildifier formatting is recommended. Here are the suggested fixes:"
        echo "============================="
        grep -e 'BUILD' $BATS_FILE_TMPDIR/changed_files \
            | xargs buildifier -v -mode=diff -diff_command="git diff --no-index"
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/README

    requiring specific network servers and also to make them 
    significantly faster.
    
    A small go get'able test module can be added here by running
    
    	cd cmd/go/testdata
    	go run addmod.go path@vers
    
    where path and vers are the module path and version to add here.
    
    For interactive experimentation using this set of modules, run:
    
    	cd cmd/go
    	go test -proxy=localhost:1234 &
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. src/hash/maphash/maphash_test.go

    	h1.WriteString("foo")
    	x := h1.Sum64() // seed generated here
    	h2 := new(Hash)
    	h2.SetSeed(h1.Seed())
    	h2.WriteString("foo")
    	y := h2.Sum64()
    	if x != y {
    		t.Errorf("hashes don't match: want %x, got %x", x, y)
    	}
    }
    
    func TestSeedFromSeed(t *testing.T) {
    	h1 := new(Hash)
    	h1.WriteString("foo")
    	_ = h1.Seed() // seed generated here
    	x := h1.Sum64()
    	h2 := new(Hash)
    	h2.SetSeed(h1.Seed())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_util.c

    /*
    Stub for allowing libc interceptors to execute.
    
    _cgo_yield is set to NULL if we do not expect libc interceptors to exist.
    */
    static void
    x_cgo_yield()
    {
    	/*
    	The libc function(s) we call here must form a no-op and include at least one
    	call that triggers TSAN to process pending asynchronous signals.
    
    	sleep(0) would be fine, but it's not portable C (so it would need more header
    	guards).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
Back to top