Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for cheese (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    You should instead declare these as a `FileCollection` input and reference just that.
    
    The same requirement applies to dependency management types with some nuances.
    
    Some types, such as `Configuration` or `SourceDirectorySet`, don't make good task input parameters, as they hold a lot of irrelevant state, and it is better to model these inputs as something more precise.
    We don't intend to make these types serializable at all.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    type StatefulSetSpec struct {
    	// replicas is the desired number of replicas of the given Template.
    	// These are replicas in the sense that they are instantiations of the
    	// same Template, but individual replicas also have a consistent identity.
    	// If unspecified, defaults to 1.
    	// TODO: Consider a rename of this field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	return false
    }
    
    // flagConstant represents the result of a compile-time comparison.
    // The sense of these flags does not necessarily represent the hardware's notion
    // of a flags register - these are just a compile-time construct.
    // We happen to match the semantics to those of arm/arm64.
    // Note that these semantics differ from x86: the carry flag has the opposite
    // sense on a subtraction!
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. pkg/volume/testing/testing.go

    	return f.Plugin.GetVolumeName(spec)
    }
    
    // CanSupport tests whether the plugin supports a given volume specification by
    // testing volume spec name begins with plugin name or not.
    // This is useful to choose plugin by volume in testing.
    func (f *FakeBasicVolumePlugin) CanSupport(spec *volume.Spec) bool {
    	return strings.HasPrefix(spec.Name(), f.GetPluginName())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/math_grad.cc

      // gradient calculation is identical for both operators.
      //
      // There's a special case for propagating gradients when there are
      // multiple minima (or maxima) - we choose to divide the gradient
      // equally among all matching inputs.
      //
      // Please note this comment
      // https://github.com/tensorflow/tensorflow/issues/4886#issuecomment-256836063
      // for details.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    )
    
    // In all of these cases, the 1.17 compiler reports reasonable errors, but either the
    // 1.17 or 1.18 compiler report extra errors, so we can't match correctly on both. We
    // now set the patterns to match correctly on all the 1.18 errors.
    // This list remains here just as a reference and for comparison - these files all pass.
    var _ = setOf(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    // There are never spaces at level 6 (unary), and always spaces at levels 3 and below.
    //
    // To choose the cutoff, look at the whole expression but excluding primary
    // expressions (function calls, parenthesized exprs), and apply these rules:
    //
    //  1. If there is a binary operator with a right side unary operand
    //     that would clash without a space, the cutoff must be (in order):
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    	DefaultPodMaxBackoffDuration time.Duration = 10 * time.Second
    )
    
    // PreEnqueueCheck is a function type. It's used to build functions that
    // run against a Pod and the caller can choose to enqueue or skip the Pod
    // by the checking result.
    type PreEnqueueCheck func(pod *v1.Pod) bool
    
    // SchedulingQueue is an interface for a queue to store pods waiting to be scheduled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    	// generic types, this is the targs used to instantiate them. These targs
    	// may be typeparams (for re-instantiated types such as Value[T2]) or
    	// concrete types (for fully instantiated types such as Value[int]).
    	// rparams is only set for named types that are generic or are fully
    	// instantiated from a generic type, and is otherwise set to nil.
    	// TODO(danscales): choose a better name.
    	rparams *[]*Type
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	// deserialize the session state.
    	//
    	// If UnwrapSession returns an error, the connection is terminated. If it
    	// returns (nil, nil), the session is ignored. crypto/tls may still choose
    	// not to resume the returned session.
    	UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
    
    	// WrapSession is called on the server to produce a session ticket/identity.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top