Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 132 for sget (2.26 sec)

  1. src/runtime/proc.go

    func (q *gQueue) push(gp *g) {
    	gp.schedlink = q.head
    	q.head.set(gp)
    	if q.tail == 0 {
    		q.tail.set(gp)
    	}
    }
    
    // pushBack adds gp to the tail of q.
    func (q *gQueue) pushBack(gp *g) {
    	gp.schedlink = 0
    	if q.tail != 0 {
    		q.tail.ptr().schedlink.set(gp)
    	} else {
    		q.head.set(gp)
    	}
    	q.tail.set(gp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    `base` chart and prior to `istiod` chart. Need to add `--set istio_cni.enabled=true` to the `istiod` install to enable its usage. ```console helm install istio-cni -n kube-system manifests/charts/istio-cni --set cni.cniBinDir="/var/lib/cni/bin" --set cni.cniConfDir="/etc/cni/multus/net.d" --set cni.chained=false --set cni.cniConfFileName="istio-cni.conf" --set cni.excludeNamespaces[0]="istio-system" --set cni.excludeNamespaces[1]="kube-system" --set cni.privileged=true --set cni.provider=multus --set...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	metrics.ActivePodCount.WithLabelValues("").Set(float64(len(activeRegularPods)))
    	metrics.ActivePodCount.WithLabelValues("true").Set(float64(len(activeStaticPods)))
    	metrics.MirrorPodCount.Set(float64(len(mirrorPods)))
    
    	// At this point, the pod worker is aware of which pods are not desired (SyncKnownPods).
    	// We now look through the set of active pods for those that the pod worker is not aware of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            value.getLoc(),
            DenseIntElementsAttr::get(
                RankedTensorType::get({static_cast<int64_t>(start.size())},
                                      rewriter.getI64Type()),
                start));
        auto size_attr = rewriter.create<TF::ConstOp>(
            value.getLoc(),
            DenseIntElementsAttr::get(
                RankedTensorType::get({static_cast<int64_t>(size.size())},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    	})
    	t.RunTraffic(TrafficTestCase{
    		name: "set header",
    		config: `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
      - {{ (index .dst 0).Config.Service }}
      http:
      - route:
        - destination:
            host: {{ (index .dst 0).Config.Service }}
        headers:
          request:
            set:
              x-custom: some-value`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	configMapManager configmap.Manager
    
    	// volumeManager observes the set of running pods and is responsible for attaching, mounting,
    	// unmounting, and detaching as those pods move through their lifecycle. It periodically
    	// synchronizes the set of known volumes to the set of actually desired volumes and cleans up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        }
        auto stride_h_attr = IntegerAttr::get(rewriter.getI32Type(), stride_h);
        auto stride_w_attr = IntegerAttr::get(rewriter.getI32Type(), stride_w);
    
        ArrayRef<int64_t> window_dims = op.getWindowDimensions();
        auto window_w_attr = IntegerAttr::get(rewriter.getI32Type(),
                                              CastI64ToI32(window_dims[2]).value());
        auto window_h_attr = IntegerAttr::get(rewriter.getI32Type(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Allow: GET, HEAD, PUT")
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
            .build(),
        )
        val response1 = get(server.url("/"))
        assertThat(response1.body.string()).isEqualTo("A")
        assertThat(response1.header("Allow")).isEqualTo("GET, HEAD")
        val response2 = get(server.url("/"))
        assertThat(response2.body.string()).isEqualTo("A")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if (failed(mlir::verifyCompatibleShape(std::get<0>(it), std::get<1>(it))))
          return op->emitOpError(llvm::formatv(
              "condition function's argument type does not match body "
              "function's argument type ({0} != {1})",
              std::get<0>(it), std::get<1>(it)));
      }
    
      return success();
    }
    
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      }
      PruneForReverseReachability(
          host_graph->get(),
          std::unordered_set<const Node*>{(*host_graph)->sink_node()});
    
      // Postprocess edges between different outside compilations.
      TF_RETURN_IF_ERROR(PostprocessEdgesBetweenOutsideCompilations(
          host_graph->get(), outside_compilation_attr_name));
    
      // Postprocess lifted arg nodes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top