Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 504 for true (0.15 sec)

  1. .gitattributes

    *.descriptor      linguist-generated=true
    *.descriptor      -diff -merge
    *.descriptor_set  linguist-generated=true
    *.descriptor_set  -diff -merge
    *.pb.html linguist-generated=true
    *.pb.go linguist-generated=true
    *.gen.go linguist-generated=true
    *.gen.yaml linguist-generated=true
    *.gen.json linguist-generated=true
    *_pb2.py linguist-generated=true
    manifests/charts/**/profile*.yaml linguist-generated=true
    go.sum merge=union
    vendor/**  linguist-vendored
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Feb 01 19:15:39 GMT 2024
    - 545 bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

      /**
       * If true, no new exchanges can be created on this connection. It is necessary to set this to
       * true when removing a connection from the pool; otherwise a racing caller might get it from the
       * pool when it shouldn't. Symmetrically, this must always be checked before returning a
       * connection from the pool.
       *
       * Once true this is always true. Guarded by this.
       */
      var noNewExchanges = false
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  3. Jenkinsfile

                        sh "mvn clean ${MAVEN_GOAL} -B -U -e -fae -V -Dmaven.test.failure.ignore -PversionlessMavenDist -Dmaven.repo.local=${WORK_DIR}/.repository"
                    }
                } finally {
                    junit testResults: '**/target/surefire-reports/*.xml,**/target/failsafe-reports/*.xml', allowEmptyResults: true
                }    
            }
        }
    }
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

      /** True if this call still has a request body open. */
      private var requestBodyOpen = false
    
      /** True if this call still has a response body open. */
      private var responseBodyOpen = false
    
      /** True if there are more exchanges expected for this call. */
      private var expectMoreExchanges = true
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 17.9K bytes
    - Viewed (2)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                        <testTarget>${jdkVersion}</testTarget>
                        <compilerVersion>1.5</compilerVersion>
                        <showDeprecation>true</showDeprecation>
                        <showWarnings>true</showWarnings>
                        <debug>true</debug>
                        <fork>true</fork>
                        <compilerArgs>
                            <arg>-Xlint:unchecked</arg>
                        </compilerArgs>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 24.5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

        }
      }
    
      /**
       * Sends a reply to an incoming stream.
       *
       * @param outFinished true to eagerly finish the output stream to send data to the remote peer.
       *     Corresponds to `FLAG_FIN`.
       * @param flushHeaders true to force flush the response headers. This should be true unless the
       *     response body exists and will be written immediately.
       */
      @Throws(IOException::class)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 23.2K bytes
    - Viewed (1)
  7. istioctl/pkg/waypoint/testdata/waypoint/combined-gateway

    NAMESPACE     NAME                   REVISION     PROGRAMMED
    bookinfo      bookinfo-rev           rev1         True
    bookinfo      bookinfo-valid         default      True
    default       bookinfo               default      False
    default       no-name-convention     default      True
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 16 21:30:40 GMT 2024
    - 338 bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                }
    
                return CodeFragmentCapturedValue.Local(name, isMutated, isCrossingInlineBounds = true)
            }
    
            if (descriptor is IrBasedValueParameterDescriptor && owner is IrValueParameter) {
                val name = owner.name
                return CodeFragmentCapturedValue.Local(name, isMutated = false, isCrossingInlineBounds = true)
            }
    
            return null
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 32.2K bytes
    - Viewed (1)
  9. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

          return InetSocketAddress(hostName, portField)
        }
    
      /**
       * True if ALPN is used on incoming HTTPS connections to negotiate a protocol like HTTP/1.1 or
       * HTTP/2. This is true by default; set to false to disable negotiation and restrict connections
       * to HTTP/1.1.
       */
      var protocolNegotiationEnabled: Boolean = true
    
      /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Mar 31 17:16:15 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    import org.objectweb.asm.TypePath
    import org.objectweb.asm.signature.SignatureReader
    import org.objectweb.asm.signature.SignatureVisitor
    import org.objectweb.asm.tree.AnnotationNode
    import org.objectweb.asm.tree.ClassNode
    import org.objectweb.asm.tree.MethodNode
    import java.io.Closeable
    import java.io.File
    import java.util.ArrayDeque
    import javax.annotation.Nullable
    
    
    fun apiTypeProviderFor(
        asmLevel: Int,
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
Back to top