Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for isSelect (0.16 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				postfilter: result{
    					status: framework.NewStatus(framework.Unschedulable, `no new claims to deallocate`),
    				},
    			},
    		},
    		"delayed-allocation-scheduling-select-immediately": {
    			// Create the PodSchedulingContext object, ask for information
    			// and select a node.
    			pod:     podWithClaimName,
    			claims:  []*resourcev1alpha2.ResourceClaim{pendingDelayedClaim},
    			classes: []*resourcev1alpha2.ResourceClass{resourceClass},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec:       example.PodSpec{NodeName: "bar"},
    	}
    
    	selectedPod := func(pod *example.Pod) *example.Pod {
    		result := pod.DeepCopy()
    		result.Labels = map[string]string{"select": "true"}
    		return result
    	}
    
    	tests := []struct {
    		name       string
    		namespace  string
    		key        string
    		pred       storage.SelectionPredicate
    		watchTests []*testWatchStruct
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set_test.go

    	manager.deletePod(logger, cache.DeletedFinalStateUnknown{Key: "foo", Obj: &pods.Items[0]})
    
    	go manager.worker(ctx)
    
    	expected := GetKey(rsSpec, t)
    	select {
    	case key := <-received:
    		if key != expected {
    			t.Errorf("Unexpected sync all for ReplicaSet %v, expected %v", key, expected)
    		}
    	case <-time.After(wait.ForeverTestTimeout):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    button,
    input {
    	line-height: normal;
    }
    
    /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
    button,
    select {
    	text-transform: none;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    				lastUpdate = allMerged.Info.LastUpdate
    			}
    		}
    		for {
    			select {
    			case <-ctx.Done():
    				return
    			case v := <-updateCloser:
    				update()
    				xioutil.SafeClose(v)
    				return
    			case <-updateTicker.C:
    				update()
    			}
    		}
    	}()
    
    	wg.Wait()
    	ch := make(chan struct{})
    	select {
    	case updateCloser <- ch:
    		<-ch
    	case <-ctx.Done():
    		mu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    	}
    
    	if !serverHello.secureRenegotiationSupported {
    		t.Errorf("Secure renegotiation extension was not echoed.")
    	}
    }
    
    func TestTLS12OnlyCipherSuites(t *testing.T) {
    	// Test that a Server doesn't select a TLS 1.2-only cipher suite when
    	// the client negotiates TLS 1.1.
    	clientHello := &clientHelloMsg{
    		vers:   VersionTLS11,
    		random: make([]byte, 32),
    		cipherSuites: []uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    }
    
    func (p *parser) selectStmt() *SelectStmt {
    	if trace {
    		defer p.trace("selectStmt")()
    	}
    
    	s := new(SelectStmt)
    	s.pos = p.pos()
    
    	p.want(_Select)
    	if !p.got(_Lbrace) {
    		p.syntaxError("missing { after select clause")
    		p.advance(_Case, _Default, _Rbrace)
    	}
    	for p.tok != _EOF && p.tok != _Rbrace {
    		s.Body = append(s.Body, p.commClause())
    	}
    	s.Rbrace = p.pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                    // Add attributes to select a different type of artifact
                }
            }.files)
        }
    }
    
    configurations {
        classpath {
            attributes {
                // Add more attributes to the configuration
            }
        }
    }
    
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    			serverConfig.MaxVersion = VersionTLS12 // TLSUnique is not defined in TLS 1.3
    			srv := Server(sconn, serverConfig)
    			if err := srv.Handshake(); err != nil {
    				t.Error(err)
    				return
    			}
    			select {
    			case <-parentDone:
    				return
    			case serverTLSUniques <- srv.ConnectionState().TLSUnique:
    			}
    		}
    	}()
    
    	clientConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def visitedArtifactSet = Mock(VisitedArtifactSet)
            def selectedArtifactSet = Mock(SelectedArtifactSet)
    
            given:
            _ * visitedArtifactSet.select(_) >> selectedArtifactSet
            _ * selectedArtifactSet.visitDependencies(_) >> { TaskDependencyResolveContext visitor -> visitor.add(artifactTaskDependencies) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top