Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for corerest (2.25 sec)

  1. cmd/bucket-replication.go

    			opType = replication.ObjectReplicationType
    		}
    		for _, rinfo := range rinfos.Targets {
    			if rinfo.ReplicationStatus != rinfo.PrevReplicationStatus {
    				rinfo.OpType = opType // update optype to reflect correct operation.
    				globalReplicationStats.Update(bucket, rinfo, rinfo.ReplicationStatus, rinfo.PrevReplicationStatus)
    			}
    		}
    	}
    
    	sendEvent(eventArgs{
    		EventName:  eventName,
    		BucketName: bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    	// Send pods to be scheduled.
    	for _, p := range pods {
    		_, err := client.CoreV1().Pods("").Create(ctx, p, metav1.CreateOptions{})
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    	wg.Wait()
    
    	// Verify correct bindings and reporting controllers.
    	if diff := cmp.Diff(wantBindings, bindings); diff != "" {
    		t.Errorf("pods were scheduled incorrectly (-want, +got):\n%s", diff)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    						check.OK(),
    						check.ResponseHeader("Access-Control-Allow-Origin", "")),
    				},
    			},
    		},
    		workloadAgnostic: true,
    	})
    	// Retry conditions have been added to just check that config is correct.
    	// Retries are not specifically tested. TODO if we actually test retries, include proxyless
    	t.RunTraffic(TrafficTestCase{
    		name: "retry conditions",
    		config: `
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    		expectedChains: [][]string{
    			{"Acme LLC", "Acme Co"},
    		},
    	},
    	{
    		// When there are two parents, one with an incorrect subject but matching SKID
    		// and one with a correct subject but missing SKID, the latter should be
    		// considered as a possible parent.
    		leaf:        leafMatchingAKIDMatchingIssuer,
    		roots:       []string{rootMatchingSKIDMismatchingSubject, rootMismatchingSKIDMatchingSubject},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    			pendingPods:    2,
    			expectedActive: 2,
    			expectedReady:  ptr.To[int32](0),
    		},
    		"correct # of pods": {
    			parallelism:    3,
    			completions:    5,
    			backoffLimit:   6,
    			activePods:     3,
    			readyPods:      2,
    			expectedActive: 3,
    			expectedReady:  ptr.To[int32](2),
    		},
    		"WQ job: correct # of pods": {
    			parallelism:    2,
    			completions:    -1,
    			backoffLimit:   6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

          local actual_device
          actual_device=$(readlink -f "${ssd}" | cut -d '/' -f 3)
          # Error checking
          if [[ "${actual_device}" != sd* ]]; then
            echo "'actual_device' is not of the correct format. It must be the kernel name of the device, got ${actual_device} instead" >&2
            exit 1
          fi
          local mountpoint="/mnt/disks/ssd${devicenum}"
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    	_, err = db.Exec("INSERT|t|id=?,name=?,nullf=?", 999, nil, nil)
    	if err == nil {
    		// TODO: this test fails, but it's just because
    		// fakeConn implements the optional Execer interface,
    		// so arguably this is the correct behavior. But
    		// maybe I should flesh out the fakeConn.Exec
    		// implementation so this properly fails.
    		// t.Errorf("expected error inserting nil name with Exec")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. src/net/http/server.go

    }
    
    // TimeFormat is the time format to use when generating times in HTTP
    // headers. It is like [time.RFC1123] but hard-codes GMT as the time
    // zone. The time being formatted must be in UTC for Format to
    // generate the correct format.
    //
    // For parsing this time format, see [ParseTime].
    const TimeFormat = "Mon, 02 Jan 2006 15:04:05 GMT"
    
    // appendTime is a non-allocating version of []byte(t.UTC().Format(TimeFormat))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	// or flagIndir is not set and v.ptr is the actual struct data.
    	// In the former case, we want v.ptr + offset.
    	// In the latter case, we must have field.offset = 0,
    	// so v.ptr + field.offset is still the correct address.
    	ptr := add(v.ptr, field.Offset, "same as non-reflect &v.field")
    	return Value{typ, ptr, fl}
    }
    
    // FieldByIndex returns the nested field corresponding to index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusBadRequest,
    			wantAPICode:        "XAmzContentChecksumMismatch",
    		},
    		// Correct crc32
    		9: {
    			bucketName:         bucketName,
    			objectName:         objectName,
    			headers:            map[string]string{"x-amz-checksum-crc32": checksumData(bytesData, crc32.New(crc32.IEEETable))},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top