Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for cheese (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/nodestatus/setters_test.go

    		t.Run(tc.desc, func(t *testing.T) {
    			ctx := context.Background()
    			imageListFunc := func() ([]kubecontainer.Image, error) {
    				// today, imageListFunc is expected to return a sorted list,
    				// but we may choose to sort in the setter at some future point
    				// (e.g. if the image cache stopped sorting for us)
    				sort.Sort(sliceutils.ByImageSize(tc.imageList))
    				return tc.imageList, tc.imageListError
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

      //
      // Future versions of the JMM may revise safe construction semantics in such a way that we can
      // safely publish these objects and we won't need this whole discussion.
      // TODO(user,lukes): consider adding volatile to all these fields since in current known JVMs
      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top