Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 444 for sometimes (0.29 sec)

  1. src/go/doc/testdata/bugpara.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bugpara
    
    // BUG(rsc): Sometimes bugs have multiple paragraphs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 12 00:14:09 UTC 2019
    - 252 bytes
    - Viewed (0)
  2. .editorconfig

    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 11:48:19 UTC 2023
    - 643 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyDynamicDispatchInterceptors.java

        @InterceptJvmCalls
        @CallableKind.StaticMethod(ofClass = ScriptBytecodeAdapter.class)
        public static void intercept_setGroovyObjectProperty(
            Object messageArgument,
            /* Sometimes it's null, we can't rely on it, so we still use @CallerClassName */
            Class<?> senderClass,
            GroovyObject receiver,
            String messageName,
            @CallerClassName String consumer,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/runtime/cgo/iscgo.go

    // for runtime·iscgo. Override it to tell the runtime we're here.
    // There are various function pointers that should be set too,
    // but those depend on dynamic linker magic to get initialized
    // correctly, and sometimes they break. This variable is a
    // backup: it depends only on old C style static linking rules.
    
    package cgo
    
    import _ "unsafe" // for go:linkname
    
    //go:linkname _iscgo runtime.iscgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 646 bytes
    - Viewed (0)
  5. releasenotes/notes/47703.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 13:04:52 UTC 2023
    - 193 bytes
    - Viewed (0)
  6. releasenotes/notes/xds-partial-full.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 37989
    - 37974
    
    releaseNotes:
    - |
      **Improved** XDS generation to send less resource when possible, sometimes omitting a response entirely.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 317 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.GenerateIdeaModule.xml

                </tr>
                <tr>
                    <td>outputFile</td>
                    <td><literal><replaceable>${project.projectDir}</replaceable>/<replaceable>${project.name}</replaceable>.iml</literal>
                        (sometimes the <replaceable>project.name</replaceable> is prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/feature_request.md

    labels: enhancement
    assignees: ''
    
    ---
    
    Start by telling us what problem you’re trying to solve. Often a solution already exists!
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 30 18:42:51 UTC 2018
    - 350 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/doc.go

    // in the signatures of methods similar to well-known interfaces.
    //
    // # Analyzer stdmethods
    //
    // stdmethods: check signature of methods of well-known interfaces
    //
    // Sometimes a type may be intended to satisfy an interface but may fail to
    // do so because of a mistake in its method signature.
    // For example, the result of this WriteTo method should be (int64, error),
    // not error, to satisfy io.WriterTo:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftSharedLibraryLinkageWithXCTestProjectIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftSourceElement
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class XcodeSwiftSharedLibraryLinkageWithXCTestProjectIntegrationTest extends AbstractXcodeSwiftWithXCTestProjectIntegrationTest {
        @Override
        void makeSingleProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top