Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for lombok (0.12 sec)

  1. src/cmd/go/internal/test/test.go

    	    run too, so that -run=X/Y matches and runs and reports the result
    	    of all tests matching X, even those without sub-tests matching Y,
    	    because it must run them to look for those sub-tests.
    	    See also -skip.
    
    	-short
    	    Tell long-running tests to shorten their run time.
    	    It is off by default but set during all.bash so that installing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            Xpp3Dom dom = null;
    
            // ----------------------------------------------------------------------
            // I would like to be able to look up the Mojo object using a key but
            // we have a limitation in modello that will be remedied shortly. So
            // for now I have to iterate through and see what we have.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    // node (tracked by the kubelet pod config loops and the state in the
    // kubelet's podManager) via the UpdatePod method. Components that act
    // upon running pods should look to the pod worker for state instead of the
    // kubelet podManager. The pod worker is periodically reconciled with the
    // state of the podManager via SyncKnownPods() and is responsible for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    //     result of stacks being freed).
    //
    //   - During GC (gcphase != _GCoff), a span *must not* transition from
    //     manual or in-use to free. Because concurrent GC may read a pointer
    //     and then look up its span, the span state must be monotonic.
    //
    // Setting mspan.state to mSpanInUse or mSpanManual must be done
    // atomically and only after all other span fields are valid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/math_grad.cc

      // index in the segment_ids parameter.
      // i.e z = [2, 3, 4, 5], segment_ids [0, 0, 0, 1]
      // will produce [2 + 3 + 4, 5] = [9, 5]
      // The gradient that will flow back to the gather operation will look like
      // [x1, x2], it will have the same shape as the output of the SegmentSum
      // operation. The differentiation step of the SegmentSum operation just
      // broadcast the gradient in order to retrieve the z's shape.
    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/os/os_test.go

    			if _, err := Stat(path); err != nil {
    				found = false
    				break
    			}
    		}
    		if found {
    			return sd
    		}
    		// In a self-hosted iOS build the above files might
    		// not exist. Look for system files instead below.
    	case "windows":
    		return &sysDir{
    			Getenv("SystemRoot") + "\\system32\\drivers\\etc",
    			[]string{
    				"networks",
    				"protocol",
    				"services",
    			},
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    		res.UdpListenerConfig = &listener.UdpListenerConfig{
    			// TODO: Maybe we should add options in MeshConfig to
    			//       configure QUIC options - it should look similar
    			//       to the H2 protocol options.
    			QuicOptions:            &listener.QuicProtocolOptions{},
    			DownstreamSocketConfig: &core.UdpSocketConfig{},
    		}
    
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	// persistConn.idleAt time we're willing to use a cached idle
    	// conn.
    	var oldTime time.Time
    	if t.IdleConnTimeout > 0 {
    		oldTime = time.Now().Add(-t.IdleConnTimeout)
    	}
    
    	// Look for most recently-used idle connection.
    	if list, ok := t.idleConn[w.key]; ok {
    		stop := false
    		delivered := false
    		for len(list) > 0 && !stop {
    			pconn := list[len(list)-1]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                } else {
                    DeprecationLogger.deprecateBehaviour("Resolution of the configuration " + identityPath.toString() + " was attempted from a context different than the project context. Have a look at the documentation to understand why this is a problem and how it can be resolved.")
                        .willBecomeAnErrorInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"1e14", decQuantity(1, 14, DecimalExponent)},
    		{"1e13", decQuantity(1, 13, DecimalExponent)},
    		{"1e3", decQuantity(1, 3, DecimalExponent)},
    		{"100.035k", decQuantity(100035, 0, DecimalSI)},
    
    		// Things that look like floating point
    		{"0.001", decQuantity(1, -3, DecimalSI)},
    		{"0.0005k", decQuantity(5, -1, DecimalSI)},
    		{"0.005", decQuantity(5, -3, DecimalSI)},
    		{"0.05", decQuantity(5, -2, DecimalSI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top