Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 188 for lost (0.07 sec)

  1. pkg/kubelet/kubelet_test.go

    		pod.Spec.InitContainers = nil
    	}
    }
    
    // testPodAdmitHandler is a lifecycle.PodAdmitHandler for testing.
    type testPodAdmitHandler struct {
    	// list of pods to reject.
    	podsToReject []*v1.Pod
    }
    
    // Admit rejects all pods in the podsToReject list with a matching UID.
    func (a *testPodAdmitHandler) Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult {
    	for _, podToReject := range a.podsToReject {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Unexpected list of nominated Pods for node: (-want, +got):\n%s", diff)
    	}
    	podInfos[0].Pod.Name = "not mpp"
    	if diff := cmp.Diff(podInfos, q.NominatedPodsForNode("node1")); diff == "" {
    		t.Error("Expected list of nominated Pods for node2 is different from podInfos")
    	}
    	if len(q.NominatedPodsForNode("node2")) != 0 {
    		t.Error("Expected list of nominated Pods for node2 to be empty.")
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    		for _, s := range relro {
    			if outer := ldr.OuterSym(s); outer != 0 {
    				st := state.symType(s)
    				ost := state.symType(outer)
    				if st != ost {
    					state.ctxt.Errorf(s, "inconsistent types for symbol and its Outer %s (%v != %v)",
    						ldr.SymName(outer), st, ost)
    				}
    			}
    		}
    
    		state.data[symnro] = ro
    		state.data[symnrelro] = relro
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          tf_device.return %2 : tensor<2xi32>
        }
    
        func.return %1 : tensor<2xi32>
      }
    
      // Verifies that ops in between outside compile ops and depending on results
      // from the host are moved after the host compute op so that dominance is not
      // violated. tf.C op in this case.
      // CHECK-LABEL: func @device_op_dominance
      func.func @device_op_dominance() -> () {
        // CHECK: tf.B
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    DATA ·polyClampMask<>+0x10(SB)/8, $0xFFFFFFFFFFFFFFFF
    DATA ·polyClampMask<>+0x18(SB)/8, $0xFFFFFFFFFFFFFFFF
    
    DATA ·sseIncMask<>+0x00(SB)/8, $0x1
    DATA ·sseIncMask<>+0x08(SB)/8, $0x0
    // To load/store the last < 16 bytes in a buffer
    DATA ·andMask<>+0x00(SB)/8, $0x00000000000000ff
    DATA ·andMask<>+0x08(SB)/8, $0x0000000000000000
    DATA ·andMask<>+0x10(SB)/8, $0x000000000000ffff
    DATA ·andMask<>+0x18(SB)/8, $0x0000000000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    :-1})})}}}},computed:{avgWidth:function(){return no(this.list)/this.length},finite:function(t){return t.finite||Math.ceil(no(this.list))<si(this.list).width+so(this.list).reduce(function(t,e){return Math.max(t,si(e).width)},0)+this.center},maxIndex:function(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return K(this.sets);Ve(this.slides,"order","");for(var t=io(this.list),e=this.length;e--;)if(ro(this.list.children[e],this.list)<t)return Math.min(e+1,this.length-1);return...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Bump GLBC version to 0.9.5 - fixes [loss of manually modified GCLB health check settings](https://github.com/kubernetes/kubernetes/issues/47559) upon upgrade from pre-1.6.4 to either 1.6.4 or 1.6.5. ([#47567](https://github.com/kubernetes/kubernetes/pull/47567), [@nicksardo](https://github.com/nicksardo))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    		}
    		// check
    		list, err := proxier.ipvs.GetVirtualServers()
    		if err != nil {
    			t.Errorf("Case [%d], unexpected list IPVS virtual server error: %v", i, err)
    		}
    		if len(list) != 1 {
    			t.Errorf("Case [%d], expect %d virtual servers, got %d", i, 1, len(list))
    			continue
    		}
    		if !list[0].Equal(testCases[i].newVirtualServer) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".\${targetColor}")
                        assert output.parentFile.directory && output.parentFile.list().length == 0
                        println "Transforming \${input.name} to \${output.name}"
                        println "Input exists: \${input.exists()}"
                        output.text = String.valueOf(input.length())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    				// Read second byte of object
    				fmt.Sprintf("bytes=%d-%d", 1, 1),
    				// Read last byte of object
    				fmt.Sprintf("bytes=-%d", 1),
    				// Read all but first byte of object
    				"bytes=1-",
    				// Read first half of object
    				fmt.Sprintf("bytes=%d-%d", 0, objLen/2),
    				// Read last half of object
    				fmt.Sprintf("bytes=-%d", objLen/2),
    				// Read middle half of object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top