Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for data1 (0.09 sec)

  1. pkg/kubelet/kubelet_pods.go

    	if err := kl.containerManager.UpdateQOSCgroups(); err != nil {
    		klog.V(2).InfoS("Failed to update QoS cgroups while killing pod", "err", err)
    	}
    	return nil
    }
    
    // makePodDataDirs creates the dirs for the pod datas.
    func (kl *Kubelet) makePodDataDirs(pod *v1.Pod) error {
    	uid := pod.UID
    	if err := os.MkdirAll(kl.getPodDir(uid), 0750); err != nil && !os.IsExist(err) {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails"
                  }
                ],
                "description": "Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
                "x-kubernetes-list-type": "atomic"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

          {{- if .Headers }}
          headers:
            {{- range $data := .Headers }}
              "{{$data.Name}}":
                {{$data.Match}}: {{$data.Value}}
            {{- end }}
          {{- end }}
          {{- if .WithoutHeaders }}
          withoutHeaders:
            {{- range $data := .WithoutHeaders }}
              "{{$data.Name}}":
                {{$data.Match}}: {{$data.Value}}
            {{- end }}
          {{- end }}
        route:
    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/reflect/all_test.go

    	})
    	shouldPanic("Value.SetIterValue called before Next", func() {
    		v.SetIterValue(i)
    	})
    	data2 := map[string]int{}
    	for i.Next() {
    		k.SetIterKey(i)
    		v.SetIterValue(i)
    		data2[k.Interface().(string)] = v.Interface().(int)
    	}
    	if !DeepEqual(data, data2) {
    		t.Errorf("maps not equal, got %v want %v", data2, data)
    	}
    	shouldPanic("Value.SetIterKey called on exhausted iterator", func() {
    		k.SetIterKey(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Type", Type: "string", Description: apiv1.Secret{}.SwaggerDoc()["type"]},
    		{Name: "Data", Type: "string", Description: apiv1.Secret{}.SwaggerDoc()["data"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(secretColumnDefinitions, printSecret)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

     *
     * @return the last modified data as milliseconds since Jan 1, 1970
     */
        public long getDate() {
            try {
                return lastModified();
            } catch( SmbException se ) {
            }
            return 0L;
        }
    
    /**
     * This URLConnection method just returns the result of <tt>lastModified</tt>.
     *
     * @return the last modified data as milliseconds since Jan 1, 1970
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Rearranges data from depth into blocks of spatial data.
        This is the reverse transformation of SpaceToDepth. More specifically,
        this op outputs a copy of the input tensor where values from the `depth`
        dimension are moved in spatial blocks to the `height` and `width`
        dimensions. The attr `block_size` indicates the input block size and how
        the data is moved.
       }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	return t.driver.Open(t.dsn)
    }
    
    func (t dsnConnector) Driver() driver.Driver {
    	return t.driver
    }
    
    // OpenDB opens a database using a [driver.Connector], allowing drivers to
    // bypass a string based data source name.
    //
    // Most users will open a database via a driver-specific connection
    // helper function that returns a [*DB]. No database drivers are included
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		w.(Flusher).Flush() // force chunked encoding
    		w.Write([]byte("{\"Addr\": \"" + r.RemoteAddr + "\"}"))
    	}))
    	type data struct {
    		Addr string
    	}
    	var addrs [2]data
    	for i := range addrs {
    		res, err := cst.c.Get(cst.ts.URL)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if err := json.NewDecoder(res.Body).Decode(&addrs[i]); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            transpose_order[dnums.getOutputSpatialDimensions().data()[i]] = i + 1;
          }
          auto output_shape =
              mlir::cast<RankedTensorType>(conv_op.getResult().getType())
                  .getShape();
          SmallVector<int64_t, 4> transposed_output_shape = {
              output_shape[dnums.getOutputBatchDimension()],
              output_shape[dnums.getOutputSpatialDimensions().data()[0]],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top