Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for abde (0.04 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

              K[] sortedKs = (K[]) sortedKeys;
              Arrays.sort(sortedKs, comparator);
              Object[] sortedValues = new Object[size];
    
              // We might, somehow, be able to reorder values in-place.  But it doesn't seem like
              // there's a way around creating the separate sortedKeys array, and if we're allocating
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// for updates. During a rolling update, all pods from ordinal Replicas-1 to
    	// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    			}
    			test.checkFunc(t)
    		})
    	}
    
    	if DB.Dialector.Name() != "sqlserver" {
    		// In SQLServer, If an index or constraint depends on the column,
    		// this column will not be able to run ALTER
    		// see https://stackoverflow.com/questions/19460912/the-object-df-is-dependent-on-column-changing-int-to-double/19461205#19461205
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// for updates. During a rolling update, all pods from ordinal Replicas-1 to
    	// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    	// if the object being admitted is modified by other admission plugins after the initial webhook call.
    	// Webhooks that specify this option *must* be idempotent, and hence able to process objects they previously admitted.
    	// Note:
    	// * the number of additional invocations is not guaranteed to be exactly one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer conn.Close()
    
    	srv := <-srvCh
    	if srv == nil {
    		t.Error(err)
    	}
    
    	// Make sure the client/server is setup correctly and is able to do a typical Write/Read
    	buf := make([]byte, 6)
    	if _, err := srv.Write([]byte("foobar")); err != nil {
    		t.Errorf("Write err: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	case typeKeyUpdate:
    		m = new(keyUpdateMsg)
    	default:
    		return nil, c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
    	}
    
    	// The handshake message unmarshalers
    	// expect to be able to keep references to data,
    	// so pass in a fresh copy that won't be overwritten.
    	data = append([]byte(nil), data...)
    
    	if !m.unmarshal(data) {
    		return nil, c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // if the object being admitted is modified by other admission plugins after the initial webhook call.
      // Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted.
      // Note:
      // * the number of additional invocations is not guaranteed to be exactly one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			}
    			w.Stop()
    			testCheckStop(t, w)
    		})
    	}
    }
    
    // RunTestWatchFromZero tests that
    //   - watch from 0 should sync up and grab the object added before
    //   - For testing with etcd, watch from 0 is able to return events for objects
    //     whose previous version has been compacted. If testing with cacher, we
    //     expect compaction to be nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    		} else {
    			stolen = scanWork
    			gp.gcAssistBytes += debtBytes
    		}
    		gcController.bgScanCredit.Add(-stolen)
    
    		scanWork -= stolen
    
    		if scanWork == 0 {
    			// We were able to steal all of the credit we
    			// needed.
    			if enteredMarkAssistForTracing {
    				trace := traceAcquire()
    				if trace.ok() {
    					trace.GCMarkAssistDone()
    					// Set this *after* we trace the end to make sure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top