Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for get4 (0.05 sec)

  1. cmd/object-handlers.go

    			return
    		}
    		w.Header().Set(xhttp.AmzServerSideEncryptionCustomerAlgorithm, r.Header.Get(xhttp.AmzServerSideEncryptionCustomerAlgorithm))
    		w.Header().Set(xhttp.AmzServerSideEncryptionCustomerKeyMD5, r.Header.Get(xhttp.AmzServerSideEncryptionCustomerKeyMD5))
    	}
    
    	s3Select.Evaluate(w)
    
    	// Notify object accessed via a GET request.
    	sendEvent(eventArgs{
    		EventName:    event.ObjectAccessedGet,
    		BucketName:   bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control_test.go

    		totalPods int,
    		selector labels.Selector,
    	) []*v1.Pod {
    		// only one pod gets created at a time due to OrderedReady
    		if len(pods) != 5 {
    			t.Fatalf("Expected create pods 5, got pods %v", len(pods))
    		}
    		spc.setPodRunning(set, 4)
    		pods, _ = spc.setPodReady(set, 4)
    
    		// create new pods 4(only one pod gets created at a time due to OrderedReady)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      for (auto it : llvm::zip(op.getResults(), then_results, else_results)) {
        // If then and else types do not match, skip refinement for that result.
        if (std::get<1>(it) != std::get<2>(it)) continue;
        changed = RefineResultType(op, std::get<0>(it), std::get<1>(it)) || changed;
      }
      return changed;
    }
    
    bool ShapeInference::InferShapeForIfRegion(IfRegionOp op) {
      bool changed = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          // Get the sign-extended value (=>int64) if the type is signed.
          float_val = apint_val.getSExtValue();
        } else {
          // Get the zero-extended value (=>uint64) if unsigned or signless.
          float_val = apint_val.getZExtValue();
        }
      }
      return DenseFPElementsAttr::get(
          RankedTensorType::get({}, builder.getF32Type()),
          {llvm::APFloat(float_val)});
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    			return
    		}
    	}
    
    	sizeStr := r.Form.Get(peerRESTSize)
    	durationStr := r.Form.Get(peerRESTDuration)
    	concurrentStr := r.Form.Get(peerRESTConcurrent)
    	storageClass := strings.TrimSpace(r.Form.Get(peerRESTStorageClass))
    	customBucket := strings.TrimSpace(r.Form.Get(peerRESTBucket))
    	autotune := r.Form.Get("autotune") == "true"
    	noClear := r.Form.Get("noclear") == "true"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    				destroyCount = destroyCount + 1
    			}
    		}
    		return destroyCount >= 1, nil
    	})
    
    	assert.NoError(t, err, "wait should not return error")
    	// housekeeping can get called multiple times. The cgroup Destroy() is
    	// done within a goroutine and can get called multiple times, so the
    	// Destroy() count in not deterministic on the actual number.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          .isEqualTo("CONNECT android.com:443 HTTP/1.1")
        assertThat(connect.headers["Host"]).isEqualTo("android.com:443")
        val get = server.takeRequest()
        assertThat(get.requestLine).isEqualTo("GET /foo HTTP/1.1")
        assertThat(get.headers["Host"]).isEqualTo("android.com")
        assertThat(hostnameVerifier.calls).isEqualTo(
          Arrays.asList("verify android.com"),
        )
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    			}
    		})
    	}
    }
    
    // The point of this test is to show that you:
    //   - get the same priority for a zero-request pod as for a pod with the defaults requests,
    //     both when the zero-request pod is already on the node and when the zero-request pod
    //     is the one being scheduled.
    //   - don't get the same score no matter what we schedule.
    func TestZeroRequest(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    			initialDelay := manager.failedPodsBackoff.Get(backoffKey)
    			if initialDelay <= 0 {
    				t.Fatal("Initial delay is expected to be set.")
    			}
    
    			resetCounters(manager)
    
    			// Immediate (second) sync gets limited by the backoff
    			expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    			delay := manager.failedPodsBackoff.Get(backoffKey)
    			if delay != initialDelay {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    	req, _ := NewRequest("GET", "http://foo.com/", nil)
    	req.Method = ""                                 // docs say "For client requests an empty string means GET"
    	got, err := httputil.DumpRequestOut(req, false) // DumpRequestOut uses Transport
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !strings.Contains(string(got), "GET ") {
    		t.Fatalf("expected substring 'GET '; got: %s", got)
    	}
    }
    
    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