Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for myHost (0.12 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    	// new ReplicaSet can be scaled up further, ensuring that total number of pods running
    	// at any time during the update is at most 130% of desired pods.
    	// +optional
    	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    type DeploymentStatus struct {
    	// The generation observed by the deployment controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

     * explanation.
     *
     * @param <K> the most general key type this builder will be able to create caches for. This is
     *     normally {@code Object} unless it is constrained by using a method like {@code
     *     #removalListener}. Cache keys may not be null.
     * @param <V> the most general value type this builder will be able to create caches for. This is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

        }
    
        /**
         * we use LowerCaseClass to limit the resolving the compiler does for vanilla names starting with a lower case letter. The idea that if we use a vanilla name with a lower case letter, that this is
         * in most cases no class. If it is a class the class needs to be imported explicitly. The effect is that in an expression like "def foo = bar" we do not have to use a loadClass call to check the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    worth bearing in mind that the `test` source set automatically creates <<java_plugin.adoc#java_source_set_configurations,corresponding dependency configurations>> — of which the most useful are `testImplementation` and `testRuntimeOnly` — that the plugins tie into the `test` task's classpath.
    
    All you need to do in most cases is configure the appropriate compilation and runtime dependencies and add any necessary configuration to the `test` task. The following example shows a simple setup that...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    	// connection. The first one is used to encrypt new tickets and
    	// all are tried to decrypt tickets.
    	ticketKeys []ticketKey
    
    	// clientFinishedIsFirst is true if the client sent the first Finished
    	// message during the most recent handshake. This is recorded because
    	// the first transmitted Finished message is the tls-unique
    	// channel-binding value.
    	clientFinishedIsFirst bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

      //
      // NB! This is *not* the same as `interned_not_instances_`.
      // `interned_not_instances_` maps ensures pointer identity for `NotPredicate`
      // instances, i.e., it ensures there at most one instance of Not(predicate)
      // for any given predicate whereas `make_not_predicate_cache_` simply caches
      // the result of the `MakeNotPredicate` function.  The values in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	// modRoot maps each module in versions to its absolute filesystem path.
    	modRoot map[module.Version]string
    
    	// pathPrefix is the path prefix for packages in the module, without a trailing
    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

            project.distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    ```
    
    ```groovy
    configurations {
        conf
    }
    
    // Extract the script-level closure to the script root scope.
    configurations.conf.incoming.afterResolve {
        distributions {
            myDist {
                contents {}
            }
        }
    }
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

            "float constant tensor">;
    
    def ExtractSingleElementAsFloat : NativeCodeCall<
        "ExtractSingleElementAsFloat($_self.cast<ElementsAttr>())">;
    
    // Checks if the value has rank at most 'n'.
    class HasRankAtMost<int n> : Constraint<
        CPred<"$0.getType().cast<ShapedType>().hasRank() && "
              "$0.getType().cast<ShapedType>().getRank() <= " # n>>;
    
    // Checks if the value has rank 'n'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	// may always replace a pending update as the pod worker does not guarantee
    	// that all intermediate states are synced to a worker, only the most recent.
    	// This state will not be visible to downstream components until a pod worker
    	// has begun processing it.
    	pendingUpdate *UpdatePodOptions
    	// activeUpdate is the most recent version of the pod's state that will be
    	// passed to a sync*Pod function. A pod becomes visible to downstream components
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top