Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,179 for debug1 (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/test/framework/testcontext.go

    		scopes.Framework.Debugf("Begin dumping testContext: %q", c.id)
    		// make sure we dump suite-level/top-level resources, but don't dump sibling tests or their children
    		for _, scope := range c.topLevelScopes() {
    			scope.dump(c, false)
    		}
    		c.scope.dump(c, true)
    		scopes.Framework.Debugf("Completed dumping testContext: %q", c.id)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate.go

    		}
    		renderedInPath := strings.Replace(inPath, "gressGateways.", "gressGateways."+fmt.Sprint(index)+".", 1)
    		scope.Debugf("Checking for path %s in IstioOperatorSpec", renderedInPath)
    
    		m, found, err := tpath.GetFromStructPath(iop, renderedInPath)
    		if err != nil {
    			return "", err
    		}
    		if !found {
    			scope.Debugf("path %s not found in IstioOperatorSpec, skip mapping.", renderedInPath)
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/sds/server.go

    	return s
    }
    
    func (s *Server) OnSecretUpdate(resourceName string) {
    	if s.workloadSds == nil {
    		return
    	}
    
    	sdsServiceLog.Debugf("Trigger on secret update, resource name: %s", resourceName)
    	s.workloadSds.push(resourceName)
    }
    
    // Stop closes the gRPC server and debug server.
    func (s *Server) Stop() {
    	if s == nil {
    		return
    	}
    	s.stopped.Store(true)
    	if s.grpcWorkloadServer != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top