Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,209 for CUSTOM (0.16 sec)

  1. src/log/slog/example_custom_levels_test.go

    	"log/slog"
    	"os"
    )
    
    // This example demonstrates using custom log levels and custom log level names.
    // In addition to the default log levels, it introduces Trace, Notice, and
    // Emergency levels. The ReplaceAttr changes the way levels are printed for both
    // the standard log levels and the custom log levels.
    func ExampleHandlerOptions_customLevels() {
    	// Exported constants from a custom logging package.
    	const (
    		LevelTrace     = slog.Level(-8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

                configurations {
                    custom
                }
    
                tasks.register('checkConfUsage') {
                    doLast {
                        assert configurations.custom.canBeConsumed
                        assert configurations.custom.canBeResolved
                        assert configurations.custom.canBeDeclared
                        assert !configurations.custom.deprecatedForConsumption
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/adminlte.min.css.map

    .custom-file,\n.input-group > .custom-select + .form-control,\n.input-group > .custom-select + .custom-select,\n.input-group > .custom-select + .custom-file,\n.input-group > .custom-file + .form-control,\n.input-group > .custom-file + .custom-select,\n.input-group > .custom-file + .custom-file {\n  margin-left: -1px;\n}\n\n.input-group > .form-control:focus,\n.input-group > .custom-select:focus,\n.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {\n  z-index: 3;\n}\n\n.input-group...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 2M bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolchainCustomizationIntegTest.groovy

                        Collections.replaceAll(args, "CUSTOM", "-DFRENCH")
                    }
                    linker.withArguments { args ->
                        args.remove "CUSTOM"
                    }
                }
            }
        }
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    cppCompiler.args "CUSTOM"
                    linker.args "CUSTOM"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. docs_src/extending_openapi/tutorial001.py

    
    def custom_openapi():
        if app.openapi_schema:
            return app.openapi_schema
        openapi_schema = get_openapi(
            title="Custom title",
            version="2.5.0",
            summary="This is a very custom OpenAPI schema",
            description="Here's a longer description of the custom **OpenAPI** schema",
            routes=app.routes,
        )
        openapi_schema["info"]["x-logo"] = {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 737 bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-mesh-dashboard.json

                  },
                  {
                    "id": "decimals",
                    "value": 2
                  },
                  {
                    "id": "custom.align"
                  },
                  {
                    "id": "custom.hidden",
                    "value": true
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/gateway-secrets.yaml

    kind: Gateway
    metadata:
      name: customgateway-wrongnamespace
    spec:
      selector:
        istio: custom-gateway # Custom gateway
      servers:
      - port:
          number: 443
          name: https
          protocol: HTTPS
        tls:
          mode: SIMPLE
          credentialName: "httpbin-credential" # Should break, doesn't exist in custom-gateway's namespace
        hosts:
        - "httpbin.example.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// group is the API group of the defined custom resource.
    	// The custom resources are served under `/apis/<group>/...`.
    	// Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).
    	Group string `json:"group" protobuf:"bytes,1,opt,name=group"`
    	// version is the API version of the defined custom resource.
    	// The custom resources are served under `/apis/<group>/<version>/...`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/LanguageTypeIntegrationTest.groovy

                            custom(CustomLanguageSourceSet)
                        }
                    }
                }
            }
    """
            then:
            succeeds "components"
            and:
            output.contains """
    SampleComponent 'main'
    ----------------------
    
    Source sets
        Custom source 'main:custom'
            srcDir: src${File.separator}main${File.separator}custom
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. fastapi/responses.py

    class UJSONResponse(JSONResponse):
        """
        JSON response using the high-performance ujson library to serialize data to JSON.
    
        Read more about it in the
        [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/).
        """
    
        def render(self, content: Any) -> bytes:
            assert ujson is not None, "ujson must be installed to use UJSONResponse"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top