Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 404 for relabel (0.62 sec)

  1. cmd/kubeadm/app/preflight/checks_other.go

    func addOSValidator(validators []system.Validator, _ *system.StreamReporter) []system.Validator {
    	return validators
    }
    
    // addIPv6Checks adds IPv6 related checks
    // No-op for Darwin (MacOS), Windows.
    func addIPv6Checks(checks []Checker) []Checker {
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    // No-op for Darwin (MacOS), Windows.
    func addIPv4Checks(checks []Checker) []Checker {
    	return checks
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 23 07:37:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/image/gif/writer.go

    			transparentIndex = i
    			break
    		}
    	}
    
    	if delay > 0 || disposal != 0 || transparentIndex != -1 {
    		e.buf[0] = sExtension  // Extension Introducer.
    		e.buf[1] = gcLabel     // Graphic Control Label.
    		e.buf[2] = gcBlockSize // Block Size.
    		if transparentIndex != -1 {
    			e.buf[3] = 0x01 | disposal<<2
    		} else {
    			e.buf[3] = 0x00 | disposal<<2
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/deploymentconfig-with-canonical-service-label.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. .gitignore

    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    .\#*
    
    # Vim-related files
    [._]*.s[a-w][a-z]
    [._]s[a-w][a-z]
    *.un~
    Session.vim
    .netrwhist
    
    # cscope-related files
    cscope.*
    
    # Go test binaries
    *.test
    /hack/.test-cmd-auth
    
    # JUnit test output from ginkgo e2e tests
    /junit*.xml
    
    # Mercurial files
    **/.hg
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. pkg/proxy/conntrack/cleanup.go

    	deleteStaleEndpointConntrackEntries(ct, svcPortMap, endpointsUpdateResult)
    }
    
    // deleteStaleServiceConntrackEntries takes care of flushing stale conntrack entries related
    // to UDP Service IPs. When a service has no endpoints and we drop traffic to it, conntrack
    // may create "black hole" entries for that IP+port. When the service gets endpoints we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. releasenotes/notes/49379.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 49379
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:34 UTC 2024
    - 212 bytes
    - Viewed (0)
  7. src/internal/syscall/windows/types_windows.go

    // Copyright 2024 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 windows
    
    // Socket related.
    const (
    	TCP_KEEPIDLE  = 0x03
    	TCP_KEEPCNT   = 0x10
    	TCP_KEEPINTVL = 0x11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:02:18 UTC 2024
    - 272 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitializer.java

    import java.util.Set;
    
    /**
     * Initializes a Gradle build, either by converting an existing build to Gradle or generating a new Gradle build.
     *
     * <p>This interface currently includes a bunch of methods that are related to build generation and should move to {@link BuildGenerator}.</p>
     */
    public interface BuildInitializer {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks_linux.go

    	return validators
    }
    
    // addIPv6Checks adds IPv6 related checks
    func addIPv6Checks(checks []Checker) []Checker {
    	checks = append(checks,
    		FileContentCheck{Path: ipv6DefaultForwarding, Content: []byte{'1'}},
    	)
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    func addIPv4Checks(checks []Checker) []Checker {
    	checks = append(checks,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/go/types/labels.go

    				recordVarDecl(d.Pos())
    			}
    
    		case *ast.LabeledStmt:
    			// declare non-blank label
    			if name := s.Label.Name; name != "_" {
    				lbl := NewLabel(s.Label.Pos(), check.pkg, name)
    				if alt := all.Insert(lbl); alt != nil {
    					err := check.newError(DuplicateLabel)
    					err.soft = true
    					err.addf(lbl, "label %s already declared", name)
    					err.addAltDecl(alt)
    					err.report()
    					// ok to continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top