Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 102 for delete1 (0.17 sec)

  1. pkg/printers/internalversion/printers_test.go

    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Provisioner: "kubernetes.io/glusterfs",
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"sc1", "kubernetes.io/glusterfs", "Delete",
    				"Immediate", false, "0s"}}},
    		},
    		{
    			sc: storage.StorageClass{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "sc2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		ps.startScope('(')
    		ps.print(c.To)
    		ps.endScope(')')
    	} else {
    		ps.print(u.Op)
    	}
    
    	if !u.Suffix {
    		isDelete := op != nil && (op.Name == "delete " || op.Name == "delete[] ")
    		if op != nil && op.Name == "::" {
    			// Don't use parentheses after ::.
    			ps.print(expr)
    		} else if u.SizeofType {
    			// Always use parentheses for sizeof argument.
    			ps.startScope('(')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	// Update the binary with the final build ID.
    	// But if OmitDebug is set, don't rewrite the binary, because we set OmitDebug
    	// on binaries that we are going to run and then delete.
    	// There's no point in doing work on such a binary.
    	// Worse, opening the binary for write here makes it
    	// essentially impossible to safely fork+exec due to a fundamental
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top