Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for content_es (0.14 sec)

  1. build/README.md

    * [`build/copy-output.sh`](copy-output.sh): This will copy the contents of `_output/dockerized/bin` from the Docker container to the local `_output/dockerized/bin`. It will also copy out specific file patterns that are generated as part of the build process. This is run automatically as part of `build/run.sh`.
    * [`build/make-clean.sh`](make-clean.sh): Clean out the contents of `_output`, remove any locally built container images and remove the data container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_server_journal.go

    	if len(queries) > 0 {
    		for _, q := range queries {
    			// The presence of / or \ is a hint that the query is for a log file. If the query is for foo.log without a
    			// slash prefix, the heuristics will still return the file contents.
    			if strings.ContainsAny(q, `/\`) {
    				nlq.Files = append(nlq.Files, q)
    			} else if strings.TrimSpace(q) != "" { // Prevent queries with just spaces
    				nlq.Services = append(nlq.Services, q)
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. hack/lib/protoc.sh

      # Run gofmt to clean up the generated code.
      kube::golang::setup_env
      gofmt -s -w "${package}/api.pb.go"
    }
    
    # Compares the contents of $1 and $2
    # Echo's $3 in case of error and exits 1
    function kube::protoc::diff() {
      local ret=0
      diff -I "gzipped FileDescriptorProto" -I "0x" -Naupr "${1}" "${2}" || ret=$?
      if [[ ${ret} -ne 0 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/bootstrap/bootstrap.go

    // LoadClientConfig tries to load the appropriate client config for retrieving certs and for use by users.
    // If bootstrapPath is empty, only kubeconfigPath is checked. If bootstrap path is set and the contents
    // of kubeconfigPath are valid, both certConfig and userConfig will point to that file. Otherwise the
    // kubeconfigPath on disk is populated based on bootstrapPath but pointing to the location of the client cert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/discovery/file/file.go

    	}
    	if err := clientcmd.Validate(*config); err != nil {
    		return nil, err
    	}
    
    	// If the kubeconfig points to a file for the CA, make sure the CA file contents are embedded
    	if err := kubeconfigutil.EnsureCertificateAuthorityIsEmbedded(currentCluster); err != nil {
    		return nil, err
    	}
    
    	// If the discovery file config contains authentication credentials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pkg/registry/core/replicationcontroller/strategy.go

    	// we can at first -- since obj contains spec -- but in the future we will probably make
    	// status its own object, and even if we don't, writes may be the result of a
    	// read-update-write loop, so the contents of spec may not actually be the spec that
    	// the controller has *seen*.
    	if !apiequality.Semantic.DeepEqual(oldController.Spec, newController.Spec) {
    		newController.Generation = oldController.Generation + 1
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:10 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    	// we can at first -- since obj contains spec -- but in the future we will probably make
    	// status its own object, and even if we don't, writes may be the result of a
    	// read-update-write loop, so the contents of spec may not actually be the spec that
    	// the controller has *seen*.
    	if !apiequality.Semantic.DeepEqual(oldCRD.Spec, newCRD.Spec) {
    		newCRD.Generation = oldCRD.Generation + 1
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	// AddressTypeFQDN represents a FQDN.
    	AddressTypeFQDN = AddressType("FQDN")
    )
    
    // Endpoint represents a single logical "backend" implementing a service.
    type Endpoint struct {
    	// addresses of this endpoint. The contents of this field are interpreted
    	// according to the corresponding EndpointSlice addressType field. Consumers
    	// must handle different types of addresses in the context of their own
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. LICENSES/vendor/sigs.k8s.io/knftables/LICENSE

              documentation, if provided along with the Derivative Works; or,
              within a display generated by the Derivative Works, if and
              wherever such third-party notices normally appear. The contents
              of the NOTICE file are for informational purposes only and
              do not modify the License. You may add Your own attribution
              notices within Derivative Works that You distribute, alongside
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 23 13:09:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. pkg/api/testing/unstructured_test.go

    	knownFailureReasons := map[string][]schema.GroupVersionKind{
    		// Since JSON cannot directly represent arbitrary byte sequences, a byte slice
    		// encodes to a JSON string containing the base64 encoding of the slice
    		// contents. Decoding a JSON string into a byte slice assumes (and requires) that
    		// the JSON string contain base64-encoded data. The CBOR serializer must be
    		// compatible with this behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top