Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 756 for covers (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    It's up to you to decide whether this step is worth the effort and potential disruption, which in turn depends on your specific build and team.
    
    The rest of the chapter covers some common scenarios you will likely deal with during the migration, such as dependency management and working with Ant tasks.
    
    [[migant:imported_builds]]
    == Working with an imported build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        new ClassSanityTester()
            .forAllPublicStaticMethods(Futures.class)
            .thatReturn(Future.class)
            .testNulls();
      }
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
      // never complete when timing out.  Notably, nothing would get logged since the Error would get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        new ClassSanityTester()
            .forAllPublicStaticMethods(Futures.class)
            .thatReturn(Future.class)
            .testNulls();
      }
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
      // never complete when timing out.  Notably, nothing would get logged since the Error would get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. logo/colors.md

    # Official Colors
    
    The kubernetes logo has an official blue color.  When reproducing the logo, please use the official color, when possible.
    
    ## Pantone
    
    When possible, the Pantone color is preferred for print material.  The official Pantone color is *285C*.
    
    ## RGB
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 16 06:15:43 UTC 2021
    - 331 bytes
    - Viewed (0)
  5. src/internal/pkgbits/codes.go

    //
    // Code types are preferable for enum types, because they allow
    // Decoder to detect desyncs.
    type Code interface {
    	// Marker returns the SyncMarker for the Code's dynamic type.
    	Marker() SyncMarker
    
    	// Value returns the Code's ordinal value.
    	Value() int
    }
    
    // A CodeVal distinguishes among go/constant.Value encodings.
    type CodeVal int
    
    func (c CodeVal) Marker() SyncMarker { return SyncVal }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	isRelease = strings.HasPrefix(goversion, "release.") || strings.HasPrefix(goversion, "go")
    }
    
    // compilerEnv returns a map from "goos/goarch" to the
    // compiler setting to use for that platform.
    // The entry for key "" covers any goos/goarch not explicitly set in the map.
    // For example, compilerEnv("CC", "gcc") returns the C compiler settings
    // read from $CC, defaulting to gcc.
    //
    // The result is a map because additional environment variables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/testing/newcover.go

    	if mode == "" {
    		return
    	}
    	cover2.mode = mode
    	cover2.tearDown = tearDown
    	cover2.snapshotcov = snapcov
    }
    
    // coverReport2 invokes a callback in _testmain.go that will
    // emit coverage data at the point where test execution is complete,
    // for "go test -cover" runs.
    func coverReport2() {
    	if !goexperiment.CoverageRedesign {
    		panic("unexpected")
    	}
    	if errmsg, err := cover2.tearDown(*coverProfile, *gocoverdir); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pkg/kubectl/cmd/convert/convert.go

    		# Convert 'pod.yaml' to latest version and print to stdout.
    		kubectl convert -f pod.yaml
    
    		# Convert the live state of the resource specified by 'pod.yaml' to the latest version
    		# and print to stdout in JSON format.
    		kubectl convert -f pod.yaml --local -o json
    
    		# Convert all files under current directory to latest version and create them all.
    		kubectl convert -f . | kubectl create -f -`))
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/cover.go

    Than McIntosh <******@****.***> 1633965979 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    				return out, false, apierrors.NewInternalError(err)
    			}
    			resourceVersion := accessor.GetResourceVersion()
    			preconditions.ResourceVersion = &resourceVersion
    		}
    	}
    
    	// !deleteImmediately covers all cases where err != nil. We keep both to be future-proof.
    	if !deleteImmediately || err != nil {
    		return out, false, err
    	}
    
    	// Going further in this function is not useful when we are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top