Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 311 for waiters (0.15 sec)

  1. maven-toolchain-model/src/site/apt/index.apt

     The following are generated from this model:
    
       * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser, <<<ToAPiV3()>>> and <<<ToApiV4()>>> transformers, and <<<v4>>> package
         for Merger and v4 Reader and Writers for the Xpp3 XML parser,
    
       * A {{{./toolchains.html}Descriptor Reference}}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. operator/pkg/validate/validate_test.go

    				t.Fatalf("unmarshalWithJSONPB(%s): got error %s", tt.desc, err)
    			}
    
    			errs := CheckIstioOperatorSpec(ispec, false)
    			if gotErrs, wantErrs := errs, tt.wantErrs; !util.EqualErrors(gotErrs, wantErrs) {
    				t.Errorf("ProtoToValues(%s)(%v): gotErrs:%s, wantErrs:%s", tt.desc, tt.yamlStr, gotErrs, wantErrs)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. maven-model/src/site/apt/index.apt

     The following are generated from this model:
    
       * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser, <<<ToAPiV3()>>> and <<<ToApiV4()>>> transformers, and <<<v4>>> package
         for Merger and v4 Reader and Writers for the Xpp3 XML parser,
    
       * A {{{./maven.html}Descriptor Reference}}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/rwmutex.go

    	wLock  mutex    // serializes writers
    	writer muintptr // pending writer waiting for completing readers
    
    	readerCount atomic.Int32 // number of pending readers
    	readerWait  atomic.Int32 // number of departing readers
    
    	readRank lockRank // semantic lock rank for read locking
    }
    
    // Lock ranking an rwmutex has two aspects:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. maven-settings/src/site/apt/index.apt

     The following are generated from this model:
    
       * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser, <<<ToAPiV3()>>> and <<<ToApiV4()>>> transformers, and <<<v4>>> package
         for Merger and v4 Reader and Writers for the Xpp3 XML parser,
    
       * A {{{./settings.html}Descriptor Reference}}
    
       * An {{{https://maven.apache.org/xsd/settings-1.2.0.xsd}XSD}}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/validation/validation_test.go

    	scenarios := map[string]struct {
    		config   *config.KubeSchedulerConfiguration
    		wantErrs field.ErrorList
    	}{
    		"good": {
    			config: validConfig,
    		},
    		"bad-parallelism-invalid-value": {
    			config: invalidParallelismValue,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "parallelism",
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. pkg/scheduler/profile/profile_test.go

    	}
    }
    
    func nilRecorderFactory(_ string) events.EventRecorder {
    	return nil
    }
    
    func checkErr(err error, wantErr string) error {
    	if len(wantErr) == 0 {
    		return err
    	}
    	if err == nil || !strings.Contains(err.Error(), wantErr) {
    		return fmt.Errorf("got error %q, want %q", err, wantErr)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/bootstraptoken/node/token_test.go

    						Secret: "bar",
    					},
    				},
    			},
    			wantErr: true,
    		},
    	}
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			client := newMockClientForTest(t)
    			if err := UpdateOrCreateTokens(client, tc.failIfExists, tc.tokens); (err != nil) != tc.wantErr {
    				t.Fatalf("UpdateOrCreateTokens() error = %v, wantErr %v", err, tc.wantErr)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 28 08:42:29 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. plugin/pkg/admission/certificates/subjectrestriction/admission_test.go

    )
    
    func TestPlugin_Validate(t *testing.T) {
    	tests := []struct {
    		name    string
    		a       admission.Attributes
    		wantErr string
    	}{
    		{
    			name: "ignored resource",
    			a: &testAttributes{
    				resource: schema.GroupResource{
    					Group:    "foo",
    					Resource: "bar",
    				},
    			},
    			wantErr: "",
    		},
    		{
    			name: "ignored subresource",
    			a: &testAttributes{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 27 15:50:14 UTC 2020
    - 5K bytes
    - Viewed (0)
  10. src/sync/atomic/example_test.go

    	m.Store(make(Map))
    	var mu sync.Mutex // used only by writers
    	// read function can be used to read the data without further synchronization
    	read := func(key string) (val string) {
    		m1 := m.Load().(Map)
    		return m1[key]
    	}
    	// insert function can be used to update the data without further synchronization
    	insert := func(key, val string) {
    		mu.Lock() // synchronize with other potential writers
    		defer mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 18 23:58:54 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top