Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for Forked (0.18 sec)

  1. pkg/apis/core/validation/validation.go

    				}
    			}
    		}
    	}
    	return allErrors
    }
    
    // validateImagePullSecrets checks to make sure the pull secrets are well
    // formed.  Right now, we only expect name to be set (it's the only field).  If
    // this ever changes and someone decides to set those fields, we'd like to
    // know.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	}
    	RegionInfo struct {
    		Offset      uint32
    		Erasesize   uint32
    		Numblocks   uint32
    		Regionindex uint32
    	}
    	OtpInfo struct {
    		Start  uint32
    		Length uint32
    		Locked uint32
    	}
    	NandOobinfo struct {
    		Useecc   uint32
    		Eccbytes uint32
    		Oobfree  [8][2]uint32
    		Eccpos   [32]uint32
    	}
    	NandOobfree struct {
    		Offset uint32
    		Length uint32
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

      enabled) has been removed. ([#118763](https://github.com/kubernetes/kubernetes/pull/118763), [@Shubham82](https://github.com/Shubham82))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Graduated `Job BackoffLimitPerIndex` feature to `beta`. ([#121356](https://github.com/kubernetes/kubernetes/pull/121356), [@mimowo](https://github.com/mimowo))
    - Marked the `onPodConditions` field as optional in `Job`'s pod failure policy. ([#120204](https://github.com/kubernetes/kubernetes/pull/120204), [@mimowo](https://github.com/mimowo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"array"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. doc/go_spec.html

    <h3 id="Tokens">Tokens</h3>
    
    <p>
    Tokens form the vocabulary of the Go language.
    There are four classes: <i>identifiers</i>, <i>keywords</i>, <i>operators
    and punctuation</i>, and <i>literals</i>.  <i>White space</i>, formed from
    spaces (U+0020), horizontal tabs (U+0009),
    carriage returns (U+000D), and newlines (U+000A),
    is ignored except as it separates tokens
    that would otherwise combine into a single token. Also, a newline or end of file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                      such as Linux conntrack.  If True, the rules in this policy are
                      applied before any data plane connection tracking, and packets allowed
                      by this policy are marked as not to be tracked.
                    type: boolean
                  egress:
                    description: The ordered set of egress rules.  Each rule contains
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier_test.go

    		logger.Error(err, "metrics are not registered?")
    		return -1
    	}
    	return int(numRulesFloat)
    }
    
    // findAllMatches takes an array of lines and a pattern with one parenthesized group, and
    // returns a sorted array of all of the unique matches of the parenthesized group.
    func findAllMatches(lines []string, pattern string) []string {
    	regex := regexp.MustCompile(pattern)
    	allMatches := sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                   /*upper_limit=*/u32_max, &rewriter);
            auto sorted = createSortOp(
                &rewriter, op.getLoc(), {keys, current},
                {rewriter.getIntegerType(32), input_type.getElementType()},
                /*dimension=*/-1, /*isStable=*/false,
                /*direction=*/ComparisonDirection::LT);
            current = sorted.getResult(1);
          }
          rewriter.replaceOp(op, current);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	off = objw.Uvarint(x, off, uint64(-s.deferBitsTemp.FrameOffset()))
    	off = objw.Uvarint(x, off, uint64(-firstOffset))
    }
    
    // buildssa builds an SSA function for fn.
    // worker indicates which of the backend workers is doing the processing.
    func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {
    	name := ir.FuncName(fn)
    
    	abiSelf := abiForFunc(fn, ssaConfig.ABI0, ssaConfig.ABI1)
    
    	printssa := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top