Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 96 for reflect1 (0.23 sec)

  1. pkg/scheduler/schedule_one_test.go

    			sched.ScheduleOne(ctx)
    			<-called
    			if e, a := item.expectAssumedPod, gotAssumedPod; !reflect.DeepEqual(e, a) {
    				t.Errorf("assumed pod: wanted %v, got %v", e, a)
    			}
    			if e, a := item.expectErrorPod, gotPod; !reflect.DeepEqual(e, a) {
    				t.Errorf("error pod: wanted %v, got %v", e, a)
    			}
    			if e, a := item.expectForgetPod, gotForgetPod; !reflect.DeepEqual(e, a) {
    				t.Errorf("forget pod: wanted %v, got %v", e, a)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package runtime
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    					if !reflect.DeepEqual(val, testCase.expectedContainerFsHard) {
    						t.Fatalf("want %v got %v", testCase.expectedContainerFsHard, val)
    					}
    					hardContainerFsMatch = idx
    				}
    				if val.Signal == evictionapi.SignalContainerFsAvailable && !isHardEvictionThreshold(val) {
    					if !reflect.DeepEqual(val, testCase.expectedContainerFsSoft) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    // Code generated by gen/cmpConstGen.go. DO NOT EDIT.
    
    package main
    
    import (
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    // results show the expected result for the elements left of, equal to and right of the index.
    type result struct{ l, e, r bool }
    
    var (
    	eq = result{l: false, e: true, r: false}
    	ne = result{l: true, e: false, r: true}
    	lt = result{l: true, e: false, r: false}
    	le = result{l: true, e: true, r: false}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		}
    		break
    	}
    	// match: (Select1 (DIVVU x (MOVVconst [1])))
    	// result: x
    	for {
    		if v_0.Op != OpMIPS64DIVVU {
    			break
    		}
    		_ = v_0.Args[1]
    		x := v_0.Args[0]
    		v_0_1 := v_0.Args[1]
    		if v_0_1.Op != OpMIPS64MOVVconst || auxIntToInt64(v_0_1.AuxInt) != 1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (Select1 (DIVVU x (MOVVconst [c])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    org.codehaus.plexus.classworlds.realm.ClassRealm) throws CompositionException; private java.util.List assignRequirementToF(Object, reflect.Field, org.codehaus.plexus.PlexusContainer, org.codehaus.plexus.component.repository.ComponentRequirement, org.codehaus.plexus.classworlds.realm.ClassRealm) throws CompositionException; private String getURLs(ClassLoader); protected reflect.Field findMatchingField(Object, org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.component.r...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    org.codehaus.plexus.classworlds.realm.ClassRealm) throws CompositionException; private java.util.List assignRequirementToF(Object, reflect.Field, org.codehaus.plexus.PlexusContainer, org.codehaus.plexus.component.repository.ComponentRequirement, org.codehaus.plexus.classworlds.realm.ClassRealm) throws CompositionException; private String getURLs(ClassLoader); protected reflect.Field findMatchingField(Object, org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.component.r...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    import (
    	"bytes"
    	"compress/gzip"
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"io/ioutil"
    	"math/rand"
    	"net/http"
    	"net/http/httptest"
    	"net/http/httputil"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/emicklei/go-restful/v3"
    	"github.com/google/go-cmp/cmp"
    
    	"k8s.io/apimachinery/pkg/api/apitesting/fuzzer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    			compareMeta2[strings.ToLower(k)] = strings.Join(v, ",")
    		}
    	}
    
    	if !reflect.DeepEqual(compareMeta1, compareMeta2) {
    		return replicateMetadata
    	}
    
    	return replicateNone
    }
    
    // replicateObject replicates the specified version of the object to destination bucket
    // The source object is then updated to reflect the replication status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

       * System.out.println(transformed);
       * }</pre>
       *
       * ... prints {@code {a=2.0, b=3.0}}.
       *
       * <p>Changes in the underlying map are reflected in this view. Conversely, this view supports
       * removal operations, and these are reflected in the underlying map.
       *
       * <p>It's acceptable for the underlying map to contain null keys, and even null values provided
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top