Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 161 for covered (0.18 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		}
    		testEnv.validatePodCache(t, testNode.Name, pod, podVolumes, expectedBindings, nil)
    	}
    }
    
    // TestCapacity covers different scenarios involving CSIStorageCapacity objects.
    // Scenarios without those are covered by TestFindPodVolumesWithProvisioning.
    func TestCapacity(t *testing.T) {
    	type scenarioType struct {
    		// Inputs
    		pvcs       []*v1.PersistentVolumeClaim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    const ptrBits = 8 * goarch.PtrSize
    
    // bulkBarrierBitmap executes write barriers for copying from [src,
    // src+size) to [dst, dst+size) using a 1-bit pointer bitmap. src is
    // assumed to start maskOffset bytes into the data covered by the
    // bitmap in bits (which may not be a multiple of 8).
    //
    // This is used by bulkBarrierPreWrite for writes to data and BSS.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    // Package files
    //
    // Parse methods are annotated with matching Go productions as appropriate.
    // The annotations are intended as guidelines only since a single Go grammar
    // rule may be covered by multiple parse methods and vice versa.
    //
    // Excluding methods returning slices, parse methods named xOrNil may return
    // nil; all others are expected to return a valid non-nil node.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Both link:{kotlin-reference}java-interop.html[calling Java from Kotlin] and link:{kotlin-reference}java-to-kotlin-interop.html[calling Kotlin from Java] are very well covered in the Kotlin reference documentation.
    
    The same mostly applies to interoperability with Groovy code.
    In addition, the Kotlin DSL provides several ways to opt into Groovy semantics, which we look at next.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    						continue
    					}
    					proxier.ipsetList[kubeLoadBalancerSourceIPSet].activeEntries.Insert(entry.String())
    				} else {
    					// since nodeIP is not covered in any of SourceRange we need to explicitly block the lbIP access from k8s nodes.
    					proxier.lbNoNodeAccessIPPortProtocolEntries = append(proxier.lbNoNodeAccessIPPortProtocolEntries, entry)
    
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	"golang.org/x/mod/modfile"
    	"golang.org/x/mod/module"
    )
    
    var CmdGet = &base.Command{
    	// Note: flags below are listed explicitly because they're the most common.
    	// Do not send CLs removing them because they're covered by [get flags].
    	UsageLine: "go get [-t] [-u] [-v] [build flags] [packages]",
    	Short:     "add dependencies to current module and install them",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    				case "gogo", "gosave_systemstack_switch", "racecall":
    					// These are context switch/race
    					// critical that we can't do a full
    					// traceback from. Typically this would
    					// be covered by the runtime check
    					// below, but these symbols don't have
    					// the package name.
    					mayBeLabeled = true
    				}
    
    				if strings.HasPrefix(l.Function.Name, "runtime.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Report encountered issues::
    If you face a problem with a <<configuration_cache#config_cache:not_yet_implemented, Gradle feature>> or with a <<configuration_cache#config_cache:plugins:core, Gradle core plugin>> that is not covered by this documentation, please report an issue on link:https://github.com/gradle/gradle/issues/new/choose[`gradle/gradle`].
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    When you don’t have access to the source for a custom task class, there is no way to add any of the annotations we covered in the previous section. Fortunately, Gradle provides a runtime API for scenarios just like that. It can also be used for ad-hoc tasks, as you'll see next.
    
    [[sec:runtime_api_for_adhoc]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	//	pxtest - package of external test files
    	var cover *load.TestCover
    	if cfg.BuildCover {
    		cover = &load.TestCover{
    			Mode:  cfg.BuildCoverMode,
    			Local: cfg.BuildCoverPkg == nil,
    			Pkgs:  testCoverPkgs,
    			Paths: cfg.BuildCoverPkg,
    		}
    	}
    	pmain, ptest, pxtest, err := load.TestPackagesFor(ctx, pkgOpts, p, cover)
    	if err != nil {
    		return nil, nil, nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top