Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 777 for Banker (0.1 sec)

  1. istioctl/pkg/util/formatting/formatter_test.go

    		diag.NewMessageType(diag.Warning, "C1", "Collapse danger: %v"),
    		diag.MockResource("GrandCastle"),
    		"the castle is too old",
    	)
    
    	msgs := diag.Messages{firstMsg, secondMsg}
    	output, _ := Print(msgs, LogFormat, false)
    
    	g.Expect(output).To(Equal(
    		"Error [B1] (SoapBubble) Explosion accident: the bubble is too big\n" +
    			"Warning [C1] (GrandCastle) Collapse danger: the castle is too old",
    	))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

    model {
        binaries {
            all {
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cCompiler.args "-O2"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    linker.args "/DEBUG"
                }
            }
        }
    }
    // end::compiler-args[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. docs/en/overrides/main.html

            <img class="sponsor-image" src="/img/sponsors/cryptapi-banner.svg" />
          </a>
        </div>
        <div class="item">
          <a title="Build, run and scale your apps on a modern, reliable, and secure PaaS." style="display: block; position: relative;" href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/obj6_test.go

    			input_insns = append(input_insns, input_insn)
    			r.marker_to_input[marker] = append(r.marker_to_input[marker], normalize(input_insn))
    		}
    		for _, expected_insn := range strings.Split(parts[1], ";") {
    			r.marker_to_expected[marker] = append(r.marker_to_expected[marker], normalize(expected_insn))
    		}
    		marker++
    	}
    	r.input = "TEXT ·foo(SB),$0\n" + strings.Join(input_insns, "\n") + "\n"
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. src/make.bat

    if x%3==x--no-banner...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

            wrapperTool(binDir, "linker", toolChain.linker)
    
            when:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
                path file('${binDir.toURI()}')
                eachPlatform {
                    cCompiler.executable = 'c-compiler'
                    staticLibArchiver.executable = 'static-lib'
                    linker.executable = 'linker'
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerTest.groovy

            logger().trace(message, arg1, arg2, arg3)
            logger().trace((Marker) null, message)
            logger().trace((Marker) null, message, new Exception())
            logger().trace((Marker) null, message, arg1)
            logger().trace((Marker) null, message, arg1, arg2)
            logger().trace((Marker) null, message, arg1, arg2, arg3)
    
            then:
            0 * context.outputEventListener._
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

             */
            AGENT_INSTRUMENTATION_MARKER(".gradle-agent-instrumented.marker"),
            /**
             * A marker file put next to the instrumented entry to indicate that it is using legacy instrumentation.
             */
            LEGACY_INSTRUMENTATION_MARKER(".gradle-legacy-instrumented.marker"),
            /**
             * A marker file put next to the instrumented entry to indicate that original file doesn't exist so there was no instrumentation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. cmd/api-resources_test.go

    			prefix:       "photos/",
    			marker:       "test",
    			delimiter:    SlashSeparator,
    			maxKeys:      100,
    			encodingType: "gzip",
    		},
    		{
    			values: url.Values{
    				"prefix":        []string{"photos/"},
    				"marker":        []string{"test"},
    				"delimiter":     []string{SlashSeparator},
    				"encoding-type": []string{"gzip"},
    			},
    			prefix:       "photos/",
    			marker:       "test",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  10. cmd/main.go

    	banner := &strings.Builder{}
    	fmt.Fprintln(banner, color.Bold("%s version %s (commit-id=%s)", c.App.Name, c.App.Version, CommitID))
    	fmt.Fprintln(banner, color.Blue("Runtime:")+color.Bold(" %s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH))
    	fmt.Fprintln(banner, color.Blue("License:")+color.Bold(" GNU AGPLv3 - https://www.gnu.org/licenses/agpl-3.0.html"))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top