Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 497 for formatters (0.63 sec)

  1. pilot/pkg/model/telemetry_logging.go

    			cel = true
    		}
    	}
    
    	formatters := make([]*core.TypedExtensionConfig, 0, maxFormattersLength)
    	if reqWithoutQuery {
    		formatters = append(formatters, reqWithoutQueryFormatter)
    	}
    	if metadata {
    		formatters = append(formatters, metadataFormatter)
    	}
    	if cel {
    		formatters = append(formatters, celFormatter)
    	}
    
    	return formatters
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

        private final Clock clock;
        private final GlobalUserInputReceiver userInput;
        private final ListenerBroadcast<OutputEventListener> formatters = new ListenerBroadcast<OutputEventListener>(OutputEventListener.class);
        private final OutputEventTransformer transformer = new OutputEventTransformer(formatters.getSource(), lock);
    
        private ColorMap colourMap;
        private OutputStream originalStdOut;
        private OutputStream originalStdErr;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/README.md

    See the style guides:
    
    - [TypeScript](https://google.github.io/styleguide/tsguide.html)
    - [CSS](https://go.dev/wiki/CSSStyleGuide)
    
    It is encouraged that all TS and CSS code be run through formatters before
    submitting a change. However, it is not a strict requirement enforced by CI.
    
    ### Installing npm Dependencies:
    
    1. Install [docker](https://docs.docker.com/get-docker/)
    2. Run `./npm install`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.attribute.FileAttribute;
    
    import static com.tngtech.archunit.base.DescribedPredicate.doNot;
    import static com.tngtech.archunit.core.domain.Formatters.ensureSimpleName;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.belongToAnyOf;
    import static com.tngtech.archunit.core.domain.properties.HasName.Predicates.name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_test.go

    						Labels: &structpb.Struct{},
    					},
    				},
    			},
    		},
    	}
    
    	textFormattersProvider = &meshconfig.MeshConfig_ExtensionProvider{
    		Name: "envoy-text-formatters",
    		Provider: &meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLog{
    			EnvoyFileAccessLog: &meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLogProvider{
    				Path: "/dev/stdout",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy-text-formatters",
    					},
    				},
    			},
    		},
    	}
    
    	jsonFormatters := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy-json-formatters",
    					},
    				},
    			},
    		},
    	}
    
    	tests := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/archive/tar/writer.go

    )
    
    // templateV7Plus fills out the V7 fields of a block using values from hdr.
    // It also fills out fields (uname, gname, devmajor, devminor) that are
    // shared in the USTAR, PAX, and GNU formats using the provided formatters.
    //
    // The block returned is only valid until the next call to
    // templateV7Plus or writeRawFile.
    func (tw *Writer) templateV7Plus(hdr *Header, fmtStr stringFormatter, fmtNum numberFormatter) *block {
    	tw.blk.reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    			break
    		}
    	}
    
    	// Could current arg implement fmt.Formatter?
    	// Skip check for the %w verb, which requires an error.
    	formatter := false
    	if v.typ != argError && state.argNum < len(call.Args) {
    		if tv, ok := pass.TypesInfo.Types[call.Args[state.argNum]]; ok {
    			formatter = isFormatter(tv.Type)
    		}
    	}
    
    	if !formatter {
    		if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. src/fmt/print.go

    		if !ok || !p.wrapErrs {
    			p.badVerb(verb)
    			return true
    		}
    		// If the arg is a Formatter, pass 'v' as the verb to it.
    		verb = 'v'
    	}
    
    	// Is it a Formatter?
    	if formatter, ok := p.arg.(Formatter); ok {
    		handled = true
    		defer p.catchPanic(p.arg, verb, "Format")
    		formatter.Format(p, verb)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    template <class TestClass>
    class TestFactoryImpl : public TestFactoryBase {
     public:
      virtual Test* CreateTest() { return new TestClass; }
    };
    
    #if GTEST_OS_WINDOWS
    
    // Predicate-formatters for implementing the HRESULT checking macros
    // {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}
    // We pass a long instead of HRESULT to avoid causing an
    // include dependency for the HRESULT type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
Back to top