Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 97 for delete1 (0.22 sec)

  1. src/reflect/value.go

    		mlen = maplen(m)
    	}
    	var it hiter
    	mapiterinit(v.typ(), m, &it)
    	a := make([]Value, mlen)
    	var i int
    	for i = 0; i < len(a); i++ {
    		key := mapiterkey(&it)
    		if key == nil {
    			// Someone deleted an entry from the map since we
    			// called maplen above. It's a data race, but nothing
    			// we can do about it.
    			break
    		}
    		a[i] = copyVal(keyType, fl, key)
    		mapiternext(&it)
    	}
    	return a[:i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				},
    				TpPairToMatchNum: map[topologyPair]int{
    					{key: "zone", value: "zone1"}: 1,
    					{key: "zone", value: "zone2"}: 2,
    				},
    			},
    		},
    		{
    			name: "delete an irrelevant pod won't help",
    			preemptor: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  3. pkg/registry/batch/job/strategy_test.go

    					Selector:       validSelector,
    					Template:       validPodTemplateSpec,
    					ManualSelector: ptr.To(true),
    					Parallelism:    ptr.To[int32](1),
    				},
    			},
    			update: func(job *batch.Job) {
    				delete(job.Annotations, "foo")
    			},
    		},
    		"updating node selector for unsuspended job disallowed": {
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    		}
    	}
    
    	// reduce memory pressure
    	fakeClock.Step(1 * time.Minute)
    	for pod := range podStats {
    		if pod.Name == "guaranteed-high-2" {
    			delete(podStats, pod)
    		}
    	}
    	summaryProvider.result = summaryStatsMaker("2Gi", podStats)
    	podKiller.pod = nil // reset state
    	_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

                <p><strong>Warning:</strong> This is an internal utility property that is only public for technical reasons,
                it is not part of the public API. In particular, this property can be changed or deleted without prior
                notice.</p>
                ]]>
              </description>
            </field>
            <field>
              <name>priority</name>
              <version>4.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	DF_1_NOW DynFlag1 = 0x00000001
    	// Unused.
    	DF_1_GLOBAL DynFlag1 = 0x00000002
    	// Indicates that the object is a member of a group.
    	DF_1_GROUP DynFlag1 = 0x00000004
    	// Indicates that the object cannot be deleted from a process.
    	DF_1_NODELETE DynFlag1 = 0x00000008
    	// Meaningful only for filters. Indicates that all associated filtees be
    	// processed immediately.
    	DF_1_LOADFLTR DynFlag1 = 0x00000010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    			failureN:   0,
    			failureErr: errors.New("second write fails"),
    			req: func() *Request {
    				return newRequest("DELETE", "http://fake.golang", nil)
    			},
    			reqString: `DELETE / HTTP/1.1\r\nHost: fake.golang\r\nUser-Agent: Go-http-client/1.1\r\nAccept-Encoding: gzip\r\n\r\n`,
    		},
    		{
    			name: "NothingWrittenGetBody",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    	return []metav1.TableRow{row}, nil
    }
    
    func resourceClaimState(obj *resource.ResourceClaim) string {
    	var states []string
    	if obj.DeletionTimestamp != nil {
    		states = append(states, "deleted")
    	}
    	if obj.Status.Allocation == nil {
    		if obj.DeletionTimestamp == nil {
    			states = append(states, "pending")
    		}
    	} else {
    		states = append(states, "allocated")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    							Name: "http",
    						},
    						HTTP: echo.HTTP{
    							Method: "OPTIONS",
    							Headers: headers.New().
    								With(headers.Origin, "cors.com").
    								With(headers.AccessControlRequestMethod, "DELETE").
    								Build(),
    						},
    						Count: 1,
    						Check: check.And(
    							check.OK(),
    							check.ResponseHeaders(map[string]string{
    								"Access-Control-Allow-Origin":  "cors.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/callback.go

    	// Pass the address of i because the C function was written to
    	// take a pointer.  We could pass an int if we felt like
    	// rewriting the C code.
    	C.callback(unsafe.Pointer(&i))
    
    	callbackMutex.Lock()
    	delete(callbackFuncs, i)
    	callbackMutex.Unlock()
    }
    
    //export goCallback
    func goCallback(p unsafe.Pointer) {
    	i := *(*int)(p)
    
    	callbackMutex.Lock()
    	f := callbackFuncs[i]
    	callbackMutex.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
Back to top