Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 191 for noOp (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginManagerTest.groovy

        def manager = new DefaultPluginManager(registry, TestUtil.instantiatorFactory().inject(), target, new TestBuildOperationRunner(), new DefaultUserCodeApplicationContext(), CollectionCallbackActionDecorator.NOOP, TestUtil.domainObjectCollectionFactory())
    
        Class<?> rulesClass
        Class<? extends Plugin> hybridClass
        Class<? extends Plugin> imperativeClass
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    		for i := range existing.Versions {
    			if existing.Versions[i].Version == value.Version {
    				// The new gv is the exact same as what is already in
    				// the map. This is a noop and cache should not be
    				// invalidated.
    				if reflect.DeepEqual(existing.Versions[i], value) {
    					return
    				}
    
    				existing.Versions[i] = value
    				versionExists = true
    				break
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

            createMetadataFile {
            }
    
            buildFile << """
                tasks.register("noop") {
                }
            """
    
            when:
            mod.pom.expectGet()
            mod.artifact.expectGet()
            executer.withArguments("-I", "init.gradle")
            fails 'noop'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    }
    
    // newFakeFlagSet constructs a pflag.FlagSet with the same flags as fs, but where
    // all values have noop Set implementations
    func newFakeFlagSet(fs *pflag.FlagSet) *pflag.FlagSet {
    	ret := pflag.NewFlagSet("", pflag.ExitOnError)
    	ret.SetNormalizeFunc(fs.GetNormalizeFunc())
    	fs.VisitAll(func(f *pflag.Flag) {
    		ret.VarP(cliflag.NoOp{}, f.Name, f.Shorthand, f.Usage)
    	})
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    					break
    				}
    				klog.V(4).Infof("Received half-close signal from client; close %d stream", channel)
    				conn.channels[channel].Close() // After first Close, other closes are noop.
    			}
    			continue
    		}
    		channel := data[0]
    		if conn.codec == base64Codec {
    			channel = channel - '0'
    		}
    		data = data[1:]
    		if int(channel) >= len(conn.channels) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/runtime/asm_loong64.s

    	RET
    
    // The top-most function running on a goroutine
    // returns to goexit+PCQuantum.
    TEXT runtime·goexit(SB),NOSPLIT|NOFRAME|TOPFRAME,$0-0
    	NOOP
    	JAL	runtime·goexit1(SB)	// does not return
    	// traceback from goexit1 must hit code range of goexit
    	NOOP
    
    // This is called from .init_array and follows the platform, not Go, ABI.
    TEXT runtime·addmoduledata(SB),NOSPLIT,$0-0
    	ADDV	$-0x10, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/net/smtp/smtp_test.go

    		case 8:
    			err = c.Verify("******@****.***")
    			if err != nil {
    				err = c.Hello("customhost")
    				if err != nil {
    					t.Errorf("Want error, got none")
    				}
    			}
    		case 9:
    			err = c.Noop()
    		default:
    			t.Fatalf("Unhandled command")
    		}
    
    		if err != nil {
    			t.Errorf("Command %d failed: %v", i, err)
    		}
    
    		bcmdbuf.Flush()
    		actualcmds := cmdbuf.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    			otelgrpc.WithMessageEvents(otelgrpc.ReceivedEvents, otelgrpc.SentEvents),
    			otelgrpc.WithPropagators(tracing.Propagators()),
    			otelgrpc.WithTracerProvider(c.TracerProvider),
    		}
    		// Even with Noop  TracerProvider, the otelgrpc still handles context propagation.
    		// See https://github.com/open-telemetry/opentelemetry-go/tree/main/example/passthrough
    		dialOptions = append(dialOptions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    			opCallback: func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error {
    				asw.UpdateReconstructedVolumeAttachability(volumeOpts.VolumeName, false)
    				// This function should be NOOP:
    				asw.UpdateReconstructedVolumeAttachability(volumeOpts.VolumeName, true)
    				return nil
    			},
    			verifyCallback: func(asw ActualStateOfWorld, volumeOpts operationexecutor.MarkVolumeOpts) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. cmd/storage-datatypes.go

    type RenameOptions struct {
    	BaseOptions
    }
    
    // DiskInfoOptions options for requesting custom results.
    type DiskInfoOptions struct {
    	DiskID  string `msg:"id"`
    	Metrics bool   `msg:"m"`
    	NoOp    bool   `msg:"np"`
    }
    
    // DiskInfo is an extended type which returns current
    // disk usage per path.
    // The above means that any added/deleted fields are incompatible.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top