Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 671 for dumpbv (0.17 sec)

  1. pkg/scheduler/internal/cache/interface.go

    	// nodeinfo.Node() is guaranteed to be not nil for all the nodes in the snapshot.
    	UpdateSnapshot(logger klog.Logger, nodeSnapshot *Snapshot) error
    
    	// Dump produces a dump of the current cache.
    	Dump() *Dump
    }
    
    // Dump is a dump of the cache state.
    type Dump struct {
    	AssumedPods sets.Set[string]
    	Nodes       map[string]*framework.NodeInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/enable-core-dump.yaml.5.template.gen.yaml

              runAsNonRoot: true
            {{- end }}
          {{ end -}}
          {{- if eq (annotation .ObjectMeta `sidecar.istio.io/enableCoreDump` .Values.global.proxy.enableCoreDump) "true" }}
          - name: enable-core-dump
            args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
            command:
              - /bin/sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_de.properties

    errors.could_not_delete_logged_in_user=Angemeldeter Benutzer konnte nicht gelöscht werden.
    errors.unauthorized_request=Nicht autorisierte Anfrage.
    errors.failed_to_print_thread_dump=Ausgabe des Thread-Dumps fehlgeschlagen.
    
    errors.invalid_query_unknown=Die angegebene Query hat eine unbekannte Bedingung.
    errors.invalid_query_parse_error=Die angegebene Query ist ungültig.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Oct 29 15:01:03 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/profile-dump_test.go

    				t.Fatal(err)
    			}
    			if !util.IsYAMLEqual(got, want) {
    				t.Errorf("profile-dump command(%s): got:\n%s\n\nwant:\n%s\nDiff:\n%s\n", tt.desc, got, want, util.YAMLDiff(got, want))
    			}
    		})
    	}
    }
    
    func runProfileDump(profilePath, configPath string, chartSource chartSourceType, outfmt string) (string, error) {
    	cmd := "profile dump -f " + profilePath
    	if configPath != "" {
    		cmd += " --config-path " + configPath
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 20 11:44:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/cc/run_passes.h

    // of the passes.
    //
    // It will try to dump intermediate MLIRs if certain conditions are met. See the
    // description from `MaybeEnableIrPrinting` for the details about the
    // conditions.
    //
    // Returns a non-OK status when the pass run fails or it fails to create an MLIR
    // dump file.
    template <typename FuncT>
    absl::Status RunPasses(const absl::string_view name, FuncT add_passes_func,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/productpage.py

    # The API:
    @app.route('/api/v1/products')
    def productsRoute():
        return json.dumps(getProducts()), 200, {'Content-Type': 'application/json'}
    
    
    @app.route('/api/v1/products/<product_id>')
    def productRoute(product_id):
        headers = getForwardHeaders(request)
        status, details = getProductDetails(product_id, headers)
        return json.dumps(details), status, {'Content-Type': 'application/json'}
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/ztunnel/configdump/configdump.go

    	return nil
    }
    
    // PrintVersionSummary prints version information for Istio and Ztunnel from the config dump
    func (c *ConfigWriter) PrintVersionSummary() error {
    	// TODO
    	return nil
    }
    
    // PrintPodRootCAFromDynamicSecretDump prints just pod's root ca from dynamic secret config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintPodRootCAFromDynamicSecretDump() (string, error) {
    	// TODO
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. istioctl/pkg/authz/authz.go

    The command also supports reading from a standalone config dump file with flag -f.`,
    		Example: `  # Check AuthorizationPolicy applied to pod httpbin-88ddbcfdd-nt5jb:
      istioctl x authz check httpbin-88ddbcfdd-nt5jb
    
      # Check AuthorizationPolicy applied to one pod under a deployment
      istioctl x authz check deployment/productpage-v1
    
      # Check AuthorizationPolicy from Envoy config dump file:
      istioctl x authz check -f httpbin_config_dump.json`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/encoder.md

    ```Python hl_lines="5 22"
    {!../../../docs_src/encoder/tutorial001.py!}
    ```
    
    この例では、Pydanticモデルを`dict`に、`datetime`を`str`に変換します。
    
    呼び出した結果は、Pythonの標準の<a href="https://docs.python.org/3/library/json.html#json.dumps" class="external-link" target="_blank">`json.dumps()`</a>でエンコードできるものです。
    
    これはJSON形式のデータを含む大きな`str`を(文字列として)返しません。JSONと互換性のある値とサブの値を持つPython標準のデータ構造(例:`dict`)を返します。
    
    !!! note "備考"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 20:09:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/Trie.java

                if (!found) {
                    return cur.terminal;
                }
            }
            return cur.terminal;
        }
    
        public void dump(boolean all, Action<? super String> onWord) {
            dump(new StringBuilder(), all, this, onWord);
        }
    
        private void dump(StringBuilder buffer, boolean all, Trie trie, Action<? super String> onWord) {
            for (Trie transition : trie.transitions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top