Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for putempty (0.22 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    				continue
    			}
    		}
    
    		expectedParamsForNamespacedRequest = append(expectedParamsForNamespacedRequest, p)
    		require.NoError(t, testContext.WaitForReconcile(timeoutCtx, p))
    	}
    	require.NotEmpty(t, expectedParamsForNamespacedRequest, "all test cases should match at least one param")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. 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)
  4. src/strings/strings_test.go

    		for i := 0; i < b.N; i++ {
    			EqualFold(s1+"αβδ", s2+"ΑΒΔ")
    		}
    	})
    }
    
    var CountTests = []struct {
    	s, sep string
    	num    int
    }{
    	{"", "", 1},
    	{"", "notempty", 0},
    	{"notempty", "", 9},
    	{"smaller", "not smaller", 0},
    	{"12345678987654321", "6", 2},
    	{"611161116", "6", 3},
    	{"notequal", "NotEqual", 0},
    	{"equal", "equal", 1},
    	{"abc1231231123q", "123", 3},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    			case strings.HasPrefix(span.Name, "runtime.v1.RuntimeService"):
    				runtimeServiceSpans = append(runtimeServiceSpans, span)
    			}
    		}
    	}
    	assert.NotEmpty(t, imageServiceSpans, "syncPod trace should have image service spans")
    	assert.NotEmpty(t, runtimeServiceSpans, "syncPod trace should have runtime service spans")
    
    	for _, span := range imageServiceSpans {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} may not be empty. */
        public static final String CONSTRAINTS_NotEmpty_MESSAGE = "{constraints.NotEmpty.message}";
    
        /** The key of the message: script expression "{script}" didn't evaluate to true. */
        public static final String CONSTRAINTS_ParametersScriptAssert_MESSAGE = "{constraints.ParametersScriptAssert.message}";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/strategy_test.go

    			ctx := warning.WithWarningRecorder(context.Background(), warnings)
    			applyAppArmorVersionSkew(ctx, test.pod)
    			test.validation(t, test.pod)
    
    			if test.expectWarning {
    				if assert.NotEmpty(t, warnings.warnings, "expect warnings") {
    					assert.Contains(t, warnings.warnings[0], `deprecated since v1.30; use the "appArmorProfile" field instead`)
    				}
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status_test.go

    		lastIndex := len(updatedNode.Status.Conditions) - 1
    		assert.Equal(t, v1.NodeReady, updatedNode.Status.Conditions[lastIndex].Type, "NodeReady should be the last condition")
    		assert.NotEmpty(t, updatedNode.Status.Conditions[lastIndex].Message)
    
    		updatedNode.Status.Conditions[lastIndex].Message = ""
    		expectedNode.Status.Conditions[lastIndex] = v1.NodeCondition{
    			Type:               v1.NodeReady,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top