Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for putempty (0.47 sec)

  1. src/runtime/mgcwork.go

    			newb.nobj = 0
    			lfnodeValidate(&newb.node)
    			if i == 0 {
    				b = newb
    			} else {
    				putempty(newb)
    			}
    		}
    	}
    	return b
    }
    
    // putempty puts a workbuf onto the work.empty list.
    // Upon entry this goroutine owns b. The lfstack.push relinquishes ownership.
    //
    //go:nowritebarrier
    func putempty(b *workbuf) {
    	b.checkempty()
    	work.empty.push(&b.node)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                versionRef = notEmpty(versionTable.getString("ref"), "version reference", alias);
                require = notEmpty(versionTable.getString("require"), "required version", alias);
                prefer = notEmpty(versionTable.getString("prefer"), "preferred version", alias);
                strictly = notEmpty(versionTable.getString("strictly"), "strict version", alias);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	res1_initial, _, _ := fetchPath(manager1, "application/json", discoveryPath, "")
    	res2_initial, _, _ := fetchPath(manager2, "application/json", discoveryPath, "")
    
    	assert.NotEmpty(t, res1_initial.Header.Get("ETag"), "Etag should be populated")
    	assert.NotEmpty(t, res2_initial.Header.Get("ETag"), "Etag should be populated")
    	assert.Equal(t, res1_initial.Header.Get("ETag"), res2_initial.Header.Get("ETag"), "etag should be deterministic")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            sanityCheckApplicationIds()
    
            if (notEmpty(initFile)) {
                initScriptAppId = findScriptApplicationId(targetsGradle(), scriptFile(initFile))
            }
            if (hasScript(initFile, scriptFile.name)) {
                initOtherScriptAppId = findScriptApplicationId(targetsGradle(), scriptFile(scriptFile))
            }
            if (notEmpty(settingsFile)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge_test.go

    		si.AllocRange(PageBase(BaseChunkIdx, 0), PageBase(BaseChunkIdx+64, 0))
    		si.NextGen()
    		si.FreeRange(PageBase(BaseChunkIdx, 0), PageBase(BaseChunkIdx+64, 0))
    		for ci := BaseChunkIdx; ci < BaseChunkIdx+64; ci++ {
    			si.SetEmpty(ci)
    		}
    		si.ResetSearchAddrs()
    
    		// Create and return test functions.
    		mark = func(base, limit uintptr) {
    			t.Helper()
    
    			si.AllocRange(base, limit)
    			si.FreeRange(base, limit)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/runtime/export_test.go

    			a.StoreUnmark(addr, addr)
    		}
    		a.Clear()
    	}
    	s.i.freeHWM = minOffAddr
    }
    
    func (s *ScavengeIndex) NextGen() {
    	s.i.nextGen()
    }
    
    func (s *ScavengeIndex) SetEmpty(ci ChunkIdx) {
    	s.i.setEmpty(chunkIdx(ci))
    }
    
    func CheckPackScavChunkData(gen uint32, inUse, lastInUse uint16, flags uint8) bool {
    	sc0 := scavChunkData{
    		gen:            gen,
    		inUse:          inUse,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  7. pkg/controller/daemon/update_test.go

    			}
    			var emptyNodes int
    			for _, pods := range c.nodeToPods {
    				if len(pods) == 0 {
    					emptyNodes++
    				}
    			}
    			if emptyNodes != c.emptyNodes {
    				t.Errorf("expected numEmpty to be %d, was %d", c.emptyNodes, emptyNodes)
    			}
    		})
    	}
    }
    
    func TestControlledHistories(t *testing.T) {
    	ds1 := newDaemonSet("ds1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			if !tc.expectErr {
    				assert.Emptyf(t, err, "Unexpected error")
    				assert.EqualValuesf(t, tc.expected, actual.SecurityContext.SupplementalGroupsPolicy, "SupplementalGroupPolicy for %s", tc.name)
    			} else {
    				assert.NotEmpty(t, err, "Unexpected success")
    				assert.Empty(t, actual, "Unexpected non empty value")
    				assert.Contains(t, err.Error(), tc.expectedErrMsg, "Error for %s", tc.name)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top