Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,171 for debugT (0.15 sec)

  1. internal/ringbuffer/ring_buffer_test.go

    	// Typical runtime is ~5-10s.
    	defer timeout(60 * time.Second)()
    	const debug = false
    
    	var readBytes int
    	var wroteBytes int
    	var readBuf bytes.Buffer
    	var wroteBuf bytes.Buffer
    	readHash := crc32.NewIEEE()
    	wroteHash := crc32.NewIEEE()
    	read := io.Writer(readHash)
    	wrote := io.Writer(wroteHash)
    	if debug {
    		read = io.MultiWriter(read, &readBuf)
    		wrote = io.MultiWriter(wrote, &wroteBuf)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    )
    
    func (i *scannerItem) applyHealing(ctx context.Context, o ObjectLayer, oi ObjectInfo) (size int64) {
    	if i.debug {
    		if oi.VersionID != "" {
    			console.Debugf(applyActionsLogPrefix+" heal checking: %v/%v v(%s)\n", i.bucket, i.objectPath(), oi.VersionID)
    		} else {
    			console.Debugf(applyActionsLogPrefix+" heal checking: %v/%v\n", i.bucket, i.objectPath())
    		}
    	}
    	scanMode := madmin.HealNormalScan
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. src/debug/macho/testdata/gcc-amd64-darwin-exec-debug.base64

    Andrew <******@****.***> 1574269611 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 21 14:55:12 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_value.go

    	for inPath, v := range t.APIMapping {
    		scope.Debugf("Checking for path %s in helm Value.yaml tree", inPath)
    		m, found, err := tpath.Find(valueTree, util.ToYAMLPath(inPath))
    		if err != nil {
    			return err
    		}
    		if !found {
    			scope.Debugf("path %s not found in helm Value.yaml tree, skip mapping.", inPath)
    			continue
    		}
    		if mstr, ok := m.(string); ok && mstr == "" {
    			scope.Debugf("path %s is empty string, skip mapping.", inPath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. pkg/log/scope.go

    	}
    }
    
    // Debugf uses fmt.Sprintf to construct and log a message at debug level.
    func (s *Scope) Debugf(format string, args ...any) {
    	if s.GetOutputLevel() >= DebugLevel {
    		msg := maybeSprintf(format, args)
    		s.emit(zapcore.DebugLevel, msg)
    	}
    }
    
    // DebugEnabled returns whether output of messages using this scope is currently enabled for debug-level output.
    func (s *Scope) DebugEnabled() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/cni-watcher.go

    		log.Errorf("Failed to unmarshal CNI plugin event: %v", err)
    		return msg, err
    	}
    
    	log.Debugf("Deserialized CNI plugin event: %+v", msg)
    	return msg, nil
    }
    
    func (s *CniPluginServer) ReconcileCNIAddEvent(ctx context.Context, addCmd CNIPluginAddEvent) error {
    	log := log.WithLabels("cni-event", addCmd)
    
    	log.Debugf("netns: %s", addCmd.Netns)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

     private:
      const int signum_;
    };
    # endif  // !GTEST_OS_WINDOWS
    
    // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
    // The death testing framework causes this to have interesting semantics,
    // since the sideeffects of the call are only visible in opt mode, and not
    // in debug mode.
    //
    // In practice, this can be used to test functions that utilize the
    // LOG(DFATAL) macro using the following style:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. test-site/activator

      else
        echo "java"
      fi
    }
    
    echoerr () {
      echo 1>&2 "$@"
    }
    vlog () {
      [[ $verbose || $debug ]] && echoerr "$@"
    }
    dlog () {
      [[ $debug ]] && echoerr "$@"
    }
    execRunner () {
      # print the arguments one to a line, quoting any containing spaces
      [[ $verbose || $debug ]] && echo "# Executing command line:" && {
        for arg; do
          if printf "%s\n" "$arg" | grep -q ' '; then
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/cmd.go

    	annotations, err := bootstrap.ReadPodAnnotations("")
    	if err != nil {
    		log.Debugf("Reading podInfoAnnotations file to get excludeInterfaces was unsuccessful. Continuing without exclusions. msg: %v", err)
    		return excludeAddrs
    	}
    	value, ok := annotations[annotation.SidecarTrafficExcludeInterfaces.Name]
    	if !ok {
    		log.Debugf("%s annotation is not present", annotation.SidecarTrafficExcludeInterfaces.Name)
    		return excludeAddrs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

     private:
      const int signum_;
    };
    # endif  // !GTEST_OS_WINDOWS
    
    // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
    // The death testing framework causes this to have interesting semantics,
    // since the sideeffects of the call are only visible in opt mode, and not
    // in debug mode.
    //
    // In practice, this can be used to test functions that utilize the
    // LOG(DFATAL) macro using the following style:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top