Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 260 for interesting (0.26 sec)

  1. src/internal/fuzz/mutator.go

    )
    
    func init() {
    	for _, v := range interesting8 {
    		interesting16 = append(interesting16, int16(v))
    	}
    	for _, v := range interesting16 {
    		interesting32 = append(interesting32, int32(v))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    	VolumePlugin
    
    	// Recycle knows how to reclaim this
    	// resource after the volume's release from a PersistentVolumeClaim.
    	// Recycle will use the provided recorder to write any events that might be
    	// interesting to user. It's expected that caller will pass these events to
    	// the PV being recycled.
    	Recycle(pvName string, spec *Spec, eventRecorder recyclerclient.RecycleEventRecorder) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedCalcCost: 0,
    			setMaxElements:   490,
    			expectedSetCost:  0,
    		},
    		// Ensure library functions are integrated with size estimates by testing the interesting cases.
    		{
    			name:             "extended library regex find",
    			schemaGenerator:  genStringWithRule("self.find('[0-9]+') == ''"),
    			expectedCalcCost: 629147,
    			setMaxElements:   10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    her eye fell upon a little bottle that stood near the looking-
    glass.  There was no label this time with the words `DRINK ME,'
    but nevertheless she uncorked it and put it to her lips.  `I know
    SOMETHING interesting is sure to happen,' she said to herself,
    `whenever I eat or drink anything; so I'll just see what this
    bottle does.  I do hope it'll make me grow large again, for
    really I'm quite tired of being such a tiny little thing!'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    her eye fell upon a little bottle that stood near the looking-
    glass.  There was no label this time with the words `DRINK ME,'
    but nevertheless she uncorked it and put it to her lips.  `I know
    SOMETHING interesting is sure to happen,' she said to herself,
    `whenever I eat or drink anything; so I'll just see what this
    bottle does.  I do hope it'll make me grow large again, for
    really I'm quite tired of being such a tiny little thing!'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/edit.go

    					rejectedRoot[prev] = true
    					continue
    				}
    				break
    			}
    			selectedRoot[m.Path] = prev.Version
    			rootsDirty = true
    
    			// If this downgrade is potentially interesting, log the reason for it.
    			if conflict.Err != nil || cfg.BuildV {
    				var action string
    				if prev.Version == "none" {
    					action = fmt.Sprintf("removing %s", m)
    				} else if prev.Version == origV {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	// does not call metrics.SetDispatchMetrics because there is no queuing and thus no interesting virtual world
    	now := qs.clock.Now()
    	req := &request{
    		qs:                qs,
    		fsName:            fsName,
    		flowDistinguisher: flowDistinguisher,
    		ctx:               ctx,
    		startTime:         now,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    type EventPort struct {
    	port  int
    	mu    sync.Mutex
    	fds   map[uintptr]*fileObjCookie
    	paths map[string]*fileObjCookie
    	// The user cookie presents an interesting challenge from a memory management perspective.
    	// There are two paths by which we can discover that it is no longer in use:
    	// 1. The user calls port_dissociate before any events fire
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  9. src/fmt/scan_test.go

    	{"%g", "-11.7e+1", &renamedFloat64Val, renamedFloat64(-11.7e+1)},
    	{"%g", "11+6e1i\n", &renamedComplex64Val, renamedComplex64(11 + 6e1i)},
    	{"%g", "-11.+7e+1i", &renamedComplex128Val, renamedComplex128(-11. + 7e+1i)},
    
    	// Interesting formats
    	{"here is\tthe value:%d", "here is   the\tvalue:118\n", &intVal, 118},
    	{"%% %%:%d", "% %:119\n", &intVal, 119},
    	{"%d%%", "42%", &intVal, 42}, // %% at end of string.
    
    	// Corner cases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    		if toUpdate, getErr = dsClient.Get(ctx, ds.Name, metav1.GetOptions{}); getErr != nil {
    			// If the GET fails we can't trust status.Replicas anymore. This error
    			// is bound to be more interesting than the update failure.
    			return getErr
    		}
    	}
    	return updateErr
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top