Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 305 for gomod (0.04 sec)

  1. .github/ISSUE_TEMPLATE/03-gopls.yml

          required: true
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is better. A failing unit test is the best."
        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:09:04 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    		mask := byte(int32(^t) >> 31)
    		b := payload[len(payload)-1-i]
    		good &^= mask&paddingLen ^ mask&b
    	}
    
    	// We AND together the bits of good and replicate the result across
    	// all the bits.
    	good &= good << 4
    	good &= good << 2
    	good &= good << 1
    	good = uint8(int8(good) >> 7)
    
    	// Zero the padding length on error. This ensures any unchecked bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                            return "good";
                        }
    
                        public String getNotAnnotated() {
                            return null;
                        }
                    }
    
                    public static class NamedBean implements Named {
                        @Input
                        public String getGood() {
                            return "good";
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    We may ask you to answer these questions directly in the GitHub issue or (for large changes) in a shared Google Doc.
    
    If you are looking for good first issues, take a look at the list of [good first issues](https://github.com/gradle/gradle/labels/good%20first%20issue) that should be actionable and ready for a contribution.
    
    ### Security vulnerabilities
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/build.sh

    cd "$(dirname "$0")"
    
    if is_continuous_or_release || [[ -z "$KOKORO_BUILD_ID" ]]; then
      # A continuous job is the only one to publish to latest
      TAG="latest-multi-python"
    else
      # If it is a change, grab a good tag for iterative builds
      if [[ -z "${KOKORO_GITHUB_PULL_REQUEST_NUMBER}" ]]; then
        TAG=$(head -n 1 "$KOKORO_PIPER_DIR/presubmit_request.txt" | cut -d" " -f2)
      else
        TAG="pr-${KOKORO_GITHUB_PULL_REQUEST_NUMBER}"
      fi
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				return claim
    			}(),
    		},
    		"good-parameters": {
    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    				claim.Spec.ParametersRef = &resource.ResourceClaimParametersReference{
    					Kind: "foo",
    					Name: "bar",
    				}
    				return claim
    			}(),
    		},
    		"good-parameters-apigroup": {
    			claim: func() *resource.ResourceClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. hack/golangci-hints.yaml

        - p: ^gomega\.BeTrue$
          pkg: ^github.com/onsi/gomega$
          msg: "it does not produce a good failure message - use BeTrueBecause with an explicit printf-style failure message instead, or plain Go: if ... { ginkgo.Fail(...) }"
        - p: ^gomega\.BeFalse$
          pkg: ^github.com/onsi/gomega$
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/os/exec_test.go

    		t.Fatalf("Signal got err %v, want nil", err)
    	}
    
    	// Verify we actually received the signal.
    	select {
    	case <-time.After(1 * time.Second):
    		t.Error("timeout waiting for signal")
    	case <-c:
    		// Good
    	}
    }
    
    func TestProcessReleaseTwice(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Fatalf("Pipe() got err %v, want nil", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/compress/flate/deflate.go

    	// We quit when we get a match that's at least nice long
    	nice := len(win) - pos
    	if d.nice < nice {
    		nice = d.nice
    	}
    
    	// If we've got a match that's good enough, only look in 1/4 the chain.
    	tries := d.chain
    	length = prevLength
    	if length >= d.good {
    		tries >>= 2
    	}
    
    	wEnd := win[pos+length]
    	wPos := win[pos:]
    	minIndex := pos - windowSize
    
    	for i := prevHead; tries > 0; tries-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    	// We don't parse the GODEBUG environment variable, because
    	// (a) it's tricky to do so in a manner that is consistent
    	//     with the godebug package; in particular, a simple
    	//     substring check is not good enough. The value is a
    	//     rightmost-wins list of options. But more importantly:
    	// (b) it is impossible to detect changes to the effective
    	//     setting caused by os.Setenv("GODEBUG"), as happens in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top