Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,751 for covered (0.17 sec)

  1. pkg/controller/disruption/disruption.go

    	err = nil
    	// TODO(davidopp): consider making the way expectedCount and rules about
    	// permitted controller configurations (specifically, considering it an error
    	// if a pod covered by a PDB has 0 controllers or > 1 controller) should be
    	// handled the same way for integer and percentage minAvailable
    
    	if pdb.Spec.MaxUnavailable != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	heapArenaBitmapWords = heapArenaWords / (8 * goarch.PtrSize)
    
    	pagesPerArena = heapArenaBytes / pageSize
    
    	// arenaL1Bits is the number of bits of the arena number
    	// covered by the first level arena map.
    	//
    	// This number should be small, since the first level arena
    	// map requires PtrSize*(1<<arenaL1Bits) of space in the
    	// binary's BSS. It can be zero, in which case the first level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/CompactHashMap.java

       * </ul>
       */
      @CheckForNull private transient Object table;
    
      /**
       * Contains the logical entries, in the range of [0, size()). The high bits of each int are the
       * part of the smeared hash of the key not covered by the hashtable mask, whereas the low bits are
       * the "next" pointer (pointing to the next entry in the bucket chain), which will always be less
       * than or equal to the hashtable mask.
       *
       * <pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			continue
    		}
    		base := r.begin - objBegin
    		insts, err := sp.objectTool.Disasm(r.mapping.File, objBegin, objEnd, rpt.options.IntelSyntax)
    		if err != nil {
    			// TODO(sanjay): Report that the covered addresses are missing.
    			continue
    		}
    
    		var lastFrames []plugin.Frame
    		var lastAddr, maxAddr uint64
    		for i, inst := range insts {
    			addr := inst.Addr + base
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		{"invalid-nodename-", true}, // Can't have trailing dashes
    		{"invalid-node?name", true}, // Unsupported characters
    		{"valid-nodename", false},   // supported
    		// test cases for criSocket are covered in TestValidateSocketPath
    	}
    	criPath := fmt.Sprintf("%s:///some/path", kubeadmapiv1.DefaultContainerRuntimeURLScheme)
    	for _, rt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    As with the link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:file(java.lang.Object)[Project.file(java.lang.Object)] method covered in the <<#sec:single_file_paths,previous section>>, all relative paths are evaluated relative to the current project directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/runtime/symtab.go

    						valPC:    prevpc,
    					}
    				}
    				cache.inUse--
    				releasem(mp)
    			}
    
    			return val, prevpc
    		}
    		prevpc = pc
    	}
    
    	// If there was a table, it should have covered all program counters.
    	// If not, something is wrong.
    	if panicking.Load() != 0 || !strict {
    		return -1, 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. pkg/kube/inject/webhook.go

    // and multiple templates will be supported by applying them in successive order.
    //
    // In addition to the plain templating, there is some post processing done to
    // handle cases that cannot feasibly be covered in the template, such as
    // re-ordering pods, rewriting readiness probes, etc.
    func injectPod(req InjectionParameters) ([]byte, error) {
    	checkPreconditions(req)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    // fields to work when using the fake client. Add it with client.PrependReactor
    // to your fake client. ResourceVersion handling is required for conflict
    // detection during updates, which is covered by some scenarios.
    func createReactor(tracker cgotesting.ObjectTracker) func(action cgotesting.Action) (handled bool, ret apiruntime.Object, err error) {
    	var uidCounter int
    	var resourceVersionCounter int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private final ConfigurationsProvider configurationsProvider;
    
        private final Path identityPath;
        private final Path projectPath;
    
        // These fields are not covered by mutation lock
        private final String name;
        private final DefaultConfigurationPublications outgoing;
    
        private boolean visible = true;
        private boolean transitive = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top