Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 715 for relabel (0.18 sec)

  1. src/image/internal/imageutil/imageutil.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go
    
    // Package imageutil contains code shared by image-related packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 24 01:01:20 UTC 2015
    - 276 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/webapp/WEB-INF/view/searchResults.jsp

    								test="${countEntry.value != 0 && fe:labelexists(countEntry.key)}">
    								<li class="list-group-item"><la:link
    										href="/search?q=${f:u(q)}&ex_q=label%3a${f:u(countEntry.key)}&sdh=${f:u(fe:sdh(sh))}${fe:pagingQuery(null)}${fe:facetQuery()}${fe:geoQuery()}">
    											${f:h(fe:label(countEntry.key))} 
    											<span class="badge badge-secondary badge-pill float-right">${f:h(countEntry.value)}</span>
    									</la:link></li>
    							</c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/pac/PacLogonInfo.java

                this.pwdLastChangeTime = pacStream.readFiletime();
                this.pwdCanChangeTime = pacStream.readFiletime();
                this.pwdMustChangeTime = pacStream.readFiletime();
    
                // User related strings as UnicodeStrings
                PacUnicodeString userNameString = pacStream.readUnicodeString();
                PacUnicodeString userDisplayNameString = pacStream.readUnicodeString();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

            private String field;
            private String label;
            private String unit;
            private String chartId;
            private boolean renderBackground;
    
            private Chart(String field, String label, String unit, String chartId, boolean renderBackground) {
                this.field = field;
                this.label = label;
                this.unit = unit;
                this.chartId = chartId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. test/fixedbugs/issue10253.go

    // run
    
    // Copyright 2015 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.
    
    // issue 10253: cmd/7g: bad codegen, probably regopt related
    
    package main
    
    func main() {
    	if !eq() {
    		panic("wrong value")
    	}
    }
    
    var text = "abc"
    var s = &str{text}
    
    func eq() bool {
    	return text[0] == s.text[0]
    }
    
    type str struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 02 20:18:28 UTC 2015
    - 418 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/BUILD

    # Description:
    #    TF2XLA Bridge and related components.
    
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package_group(
        name = "tensorflow_mlir_tf2xla",
        packages = [
            "//tensorflow/compiler/mlir/tf2xla/...",
        ],
    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 970 bytes
    - Viewed (0)
  10. test/fixedbugs/bug092.go

    	var b [10000] int64;  // this causes a runtime crash
    	_, _ = a, b;
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug092.go && 6l bug092.6 && 6.out
    Illegal instruction
    
    gri: array size matters, possibly related to stack overflow check?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 474 bytes
    - Viewed (0)
Back to top