Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 743 for dumpms (0.2 sec)

  1. tools/dump-docker-logs.sh

    John Howard <******@****.***> 1621975056 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 25 20:37:36 UTC 2021
    - 939 bytes
    - Viewed (0)
  2. pkg/volume/downwardapi/downwardapi.go

    		return err
    	}
    
    	setupSuccess = true
    	return nil
    }
    
    // CollectData collects requested downwardAPI in data map.
    // Map's key is the requested name of file to dump
    // Map's value is the (sorted) content of the field to be dumped in the file.
    //
    // Note: this function is exported so that it can be called from the projection volume driver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. ci/official/debug_tfci.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # This script dumps some information about the environment. It's most useful
    # for verifying changes to the TFCI scripts system, and most users won't need
    # to interact with it at all.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 01 19:54:25 UTC 2023
    - 1022 bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/math/QuantilesBenchmark.java

      double median(int reps) {
        double dummy = 0.0;
        for (int i = 0; i < reps; i++) {
          dummy += algorithm.singleQuantile(1, 2, dataset(i));
        }
        return dummy;
      }
    
      @Benchmark
      double percentile90(int reps) {
        double dummy = 0.0;
        for (int i = 0; i < reps; i++) {
          dummy += algorithm.singleQuantile(90, 100, dataset(i));
        }
        return dummy;
      }
    
      @Benchmark
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. test/fixedbugs/bug008.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	i5 := 5;
    
    	switch {  // compiler crash fixable with 'switch true'
    	case i5 < 5: dummy := 0; _ = dummy;
    	case i5 == 5: dummy := 0; _ = dummy;
    	case i5 > 5: dummy := 0; _ = dummy;
    	}
    }
    /*
    Segmentation fault
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 405 bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/collect/SortedCopyBenchmark.java

            Collections.sort(copy);
            dummy += ImmutableList.copyOf(copy).get(0);
          }
        }
        return dummy;
      }
    
      @Benchmark
      int ordering(int reps) {
        int dummy = 0;
        if (mutable) {
          for (int i = 0; i < reps; i++) {
            dummy += ORDERING.sortedCopy(input).get(0);
          }
        } else {
          for (int i = 0; i < reps; i++) {
            dummy += ORDERING.immutableSortedCopy(input).get(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java

      int joinerWithStringDelimiter(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy ^= JOINER_ON_STRING.join(components).length();
        }
        return dummy;
      }
    
      /** {@link Joiner} with a character delimiter. */
      @Benchmark
      int joinerWithCharacterDelimiter(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy ^= JOINER_ON_CHARACTER.join(components).length();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

                - NET_ADMIN
                - SYS_RESOURCE # Required for core dumps
              runAsUser: 1338
              runAsGroup: 1338
            command:
            - bash
            - -c
            - |-
              # Sudo and ulimits is problematic. There must be a better way to do this, but for now we can hack it
              # See https://superuser.com/questions/1733614/how-to-configure-core-dumps-ulimit-c-from-within-sudo-within-docker
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

      // A hook that may be overridden by a derived config that checks if the IR
      // of 'operation' should be dumped *before* the pass 'pass' has been
      // executed. If the IR should be dumped, 'print_callback' should be invoked
      // with the stream to dump into.
      void printBeforeIfEnabled(mlir::Pass* pass, mlir::Operation* op,
                                PrintCallbackFn print_callback) override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. 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)
Back to top