Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for werde (0.21 sec)

  1. cluster/gce/gci/configure-helper.sh

          - group: "scheduling.k8s.io"
          - group: "storage.k8s.io"'
    
      cat <<EOF >"${path}"
    apiVersion: audit.k8s.io/v1
    kind: Policy
    rules:
      # The following requests were manually identified as high-volume and low-risk,
      # so drop them.
      - level: None
        users: ["system:kube-proxy"]
        verbs: ["watch"]
        resources:
          - group: "" # core
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    // TestPriorityQueue_AddUnschedulableIfNotPresent_Backoff tests the scenarios when
    // AddUnschedulableIfNotPresent is called asynchronously.
    // Pods in and before current scheduling cycle will be put back to activeQueue
    // if we were trying to schedule them when we received move request.
    func TestPriorityQueue_AddUnschedulableIfNotPresent_Backoff(t *testing.T) {
    	logger, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    		}
    		if !DeepEqual(have0.Interface(), want) {
    			t.Errorf("Append #%d: have %v, want %v (%p %p)", i, have0, want, test.orig, have0.Interface())
    		}
    		// Check that the orig and extra slices were not modified.
    		if a0.Len() != len(test.orig) {
    			t.Errorf("Append #%d: a0.Len: have %d, want %d", i, a0.Len(), origLen)
    		}
    		if len(test.orig) != origLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    		got := 1
    		if body1 != body2 {
    			got++
    		}
    		want := 1
    		if reqClose {
    			want = 2
    		}
    		if got != want {
    			t.Errorf("for Request.Close=%v: server saw %v unique connections, wanted %v\n\nbodies were: %q and %q",
    				reqClose, got, want, body1, body2)
    		}
    
    		tr.CloseIdleConnections()
    	}
    
    	connSet.check(t)
    }
    
    // if the Transport's DisableKeepAlives is set, all requests should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      else
        node_taints="${WINDOWS_NODE_TAINTS:-}"
      fi
      if [[ -n "${node_taints}" ]]; then
        flags+=" --register-with-taints=${node_taints}"
      fi
    
      # Many of these flags were adapted from
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1.
      flags+=" --config=${WINDOWS_KUBELET_CONFIG_FILE}"
      flags+=" --kubeconfig=${WINDOWS_KUBECONFIG_FILE}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers_test.go

    		t.Errorf("Expected %v, actual: %v", expectedBytes, pidQuantity.available.Value())
    	}
    	for _, pod := range pods {
    		podStats, found := statsFunc(pod)
    		if !found {
    			t.Errorf("Pod stats were not found for pod %v", pod.UID)
    		}
    		if *podStats.Memory.WorkingSetBytes != podWorkingSetBytes {
    			t.Errorf("Pod working set expected %v, actual: %v", podWorkingSetBytes, *podStats.Memory.WorkingSetBytes)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        LOG(WARNING) << "Graph shapes did not converge to a fixpoint within "
                     << kMaxIterationCount
                     << " iterations. Graph shapes may be conservative.";
      }
      VLOG(1) << "Graph shapes were inferred with " << (i - 1)
              << " extra rounds of analysis to reach a fixpoint.";
      return absl::OkStatus();
    }
    
    absl::StatusOr<mlir::Type> ImporterBase::InferInputType(const Node& node,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    			klog.V(2).InfoS("MountVolume.markDeviceErrorState leaving volume uncertain", "volumeName", volumeToMount.VolumeName)
    			return
    		}
    
    		// Only devices which were uncertain can be marked as unmounted
    		markDeviceUnmountError := actualStateOfWorld.MarkDeviceAsUnmounted(volumeToMount.VolumeName)
    		if markDeviceUnmountError != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    				if httpProtocolOptions.GetUseDownstreamProtocolConfig() != nil {
    					t.Errorf("Expected cluster to not to use downstream protocol but got %v", httpProtocolOptions)
    				}
    			}
    
    			// Verify that the values were set correctly.
    			g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout).To(Not(BeNil()))
    			g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout).To(Equal(durationpb.New(time.Duration(15000000000))))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.takeRequest() // seed
        return server.takeRequest()
      }
    
      /**
       * For Last-Modified and Date headers, we should echo the date back in the exact format we were
       * served.
       */
      @Test
      fun retainServedDateFormat() {
        // Serve a response with a non-standard date format that OkHttp supports.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
Back to top