Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for gots (0.07 sec)

  1. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/gogs/go-gogs-client,v0.0.0-20190710002546-4c3c18947c15,h1:tgEyCCe4+o8A2K/PEi9lF0QMA6XK+Y/j/WN01LnNbbo=,cc5dcea1cca3d3d3e90a0ad548a660250b1299a61519f6dda5dcd7f2f1412daf
    github.com/gogs/go-libravatar,v0.0.0-20161120025154-cd1abbd55d09,h1:UdOSIHZpkYcajRbfebBYzFDsL3SuqObH3bvKYBqgKmI=,f81991af4a649aa273bc0c3e7251f107ba0967f5d83553f5a18ed688d937eff0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    				if tc.error == "" {
    					t.Errorf("got unexpected error: %v", err)
    				} else if !strings.HasPrefix(err.Error(), tc.error) {
    					t.Errorf("got wrong error: %v (expected %q)", err, tc.error)
    				}
    			}
    		})
    	}
    }
    
    // getLine returns the line number of the caller, if possible.  This is useful in
    // tests with a large number of cases - when something goes wrong you can find
    // which case more easily.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateEphemeralVolumeSource(source.Ephemeral, fldPath.Child("ephemeral"))...)
    			// Check the expected name for the PVC. This gets skipped if information is missing,
    			// because that already gets flagged as a problem elsewhere. For example,
    			// ValidateObjectMeta as called by validatePodMetadataAndSpec checks that the name is set.
    			if podMeta != nil && podMeta.Name != "" && volName != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // The expected number of collisions is n - d + d(1 - 1/d)^n, where d is
          // the number of possible keys and n is the number of values. If d = n^2,
          // then the limit as n goes to infinity is 1/2. If d = n^3, then the limit
          // as n goes to infinity is zero.
    
          // This implementation ensures that the key-space is greater than or equal
          // to the cube of the number of values. The risk of collisions can be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

                    type: string
                  defaultEndpointToHostAction:
                    description: 'DefaultEndpointToHostAction controls what happens to
                      traffic that goes from a workload endpoint to the host itself (after
                      the traffic hits the endpoint egress policy). By default Calico
                      blocks traffic from workload endpoints to the host itself with an
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    - Fixes a race condition in the iptables mode of kube-proxy in 1.27 and later
      that could result in some updates getting lost (e.g., when a service gets a
      new endpoint, the rules for the new endpoint might not be added until
      much later). ([#122815](https://github.com/kubernetes/kubernetes/pull/122815), [@wedaly](https://github.com/wedaly)) [SIG Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    			v = d - 'A' + 10
    		default:
    			n = 0
    			err = strconv.ErrSyntax
    			goto Error
    		}
    		if int(v) >= base {
    			n = 0
    			err = strconv.ErrSyntax
    			goto Error
    		}
    
    		if n >= cutoff {
    			// n*base overflows
    			n = 1<<64 - 1
    			err = strconv.ErrRange
    			goto Error
    		}
    		n *= uint64(base)
    
    		n1 := n + uint64(v)
    		if n1 < n || n1 > maxVal {
    			// n+v overflows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.15.md

    - Fixed a bug that caused a DaemonSet rolling update to hang when its pod gets stuck at terminating.  ([#77773](https://github.com/kubernetes/kubernetes/pull/77773), [@DaiHao](https://github.com/DaiHao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-LABEL: strided_slice_implicit_ellipsis_mask(
    // CHECK-SAME: [[INPUT:%.*]]: tensor<10x16x2xf32>
    func.func @strided_slice_implicit_ellipsis_mask(%input: tensor<10x16x2xf32>) -> tensor<2x16x2xf32> {
      // StridedSlice gets input[8:10], which is same as input[8:10, ...]
      // The start_indices, limit_indices, and strides attribute of mhlo.slice
      // reflect the canonicalized slice.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.9.md

    *   Added a new --etcd-upgrade keyword to kubeadm upgrade apply. When this keyword is specified, etcd's static pod gets upgraded to the etcd version officially recommended for a target kubernetes release. ([#55010](https://github.com/kubernetes/kubernetes/pull/55010),[ @sbezverk](https://github.com/sbezverk))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top