Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 177 for Parses (0.28 sec)

  1. pilot/pkg/networking/core/fake.go

    )
    
    type TestOptions struct {
    	// If provided, these configs will be used directly
    	Configs        []config.Config
    	ConfigPointers []*config.Config
    
    	// If provided, the yaml string will be parsed and used as configs
    	ConfigString string
    	// If provided, the ConfigString will be treated as a go template, with this as input params
    	ConfigTemplateInput any
    
    	// Services to pre-populate as part of the service discovery
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

      } catch (_: NumberFormatException) {
        defaultValue
      }
    }
    
    /**
     * Returns this as a non-negative integer, or 0 if it is negative, or [Int.MAX_VALUE] if it is too
     * large, or [defaultValue] if it cannot be parsed.
     */
    internal fun String?.toNonNegativeInt(defaultValue: Int): Int {
      try {
        val value = this?.toLong() ?: return defaultValue
        return when {
          value > Int.MAX_VALUE -> Int.MAX_VALUE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security.go

    	re(`-rdynamic`),
    	re(`-shared`),
    	re(`-?-static([-a-z0-9+]*)`),
    	re(`-?-stdlib=([^@\-].*)`),
    	re(`-v`),
    
    	// Note that any wildcards in -Wl need to exclude comma,
    	// since -Wl splits its argument at commas and passes
    	// them all to the linker uninterpreted. Allowing comma
    	// in a wildcard would allow tunneling arbitrary additional
    	// linker arguments through one of these.
    	re(`-Wl,--(no-)?allow-multiple-definition`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      }
    
      auto prepare_status = manager.run(module);
      auto diag_handler_status = diag_handler.ConsumeStatus();
      // There are cases where the scoped diagnostic handler catches a failure that
      // the running of the passes does not. That causes the handler to throw if
      // it is not consumed.
      if (failed(prepare_status) || failed(diag_handler_status)) {
        return diag_handler_status;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/encoding/json/encode.go

    	}
    	return false
    }
    
    func (e *encodeState) reflectValue(v reflect.Value, opts encOpts) {
    	valueEncoder(v)(e, v, opts)
    }
    
    type encOpts struct {
    	// quoted causes primitive fields to be encoded inside JSON strings.
    	quoted bool
    	// escapeHTML causes '<', '>', and '&' to be escaped in JSON strings.
    	escapeHTML bool
    }
    
    type encoderFunc func(e *encodeState, v reflect.Value, opts encOpts)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// Maximum QPS when communicating with kubernetes API
    	KubernetesAPIQPS float32
    
    	// Maximum burst for throttle when communicating with the kubernetes API
    	KubernetesAPIBurst int
    
    	// SyncTimeout, if set, causes HasSynced to be returned when timeout.
    	SyncTimeout time.Duration
    
    	// Revision of this Istiod instance
    	Revision string
    
    	ConfigCluster bool
    
    	CniNamespace string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/Striped64.java

       * may not occur at all. However, despite these limitations,
       * observed contention rates are typically low in these cases.
       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. settings.gradle.kts

            }
            maven {
                name = "Gradle public repository"
                url = uri("https://repo.gradle.org/gradle/public")
                content {
                    includeModule("org.openmbee.junit", "junit-xml-parser")
                }
            }
            gradlePluginPortal()
        }
        includeBuild("build-logic-settings")
    }
    
    plugins {
        id("gradlebuild.build-environment")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/Striped64.java

       * may not occur at all. However, despite these limitations,
       * observed contention rates are typically low in these cases.
       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (2)
  10. guava/src/com/google/common/hash/Striped64.java

       * may not occur at all. However, despite these limitations,
       * observed contention rates are typically low in these cases.
       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top