Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 441 for lombok (0.38 sec)

  1. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    named org.apache.commons.logging.LogFactory. Use the JDK 1.3 JAR Services Discovery mechanism (see http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html for more information) to look for a resource named META-INF/services/org.apache.commons.logging.LogFactory whose first line is assumed to contain the desired class name. Look for a properties file named commons-logging.properties visible in the application class path, with a property named org.apache.commons.logging.LogFactory defining the desired implementation...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  2. src/html/template/transition.go

    	} else if i != len(s) {
    		c.state = stateAfterName
    	}
    	return c, i
    }
    
    // tAfterName is the context transition function for stateAfterName.
    func tAfterName(c context, s []byte) (context, int) {
    	// Look for the start of the value.
    	i := eatWhiteSpace(s, 0)
    	if i == len(s) {
    		return c, len(s)
    	} else if s[i] != '=' {
    		// Occurs due to tag ending '>', and valueless attribute.
    		c.state = stateTag
    		return c, i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/encoding/json/stream.go

    	dec.scan.reset()
    
    	scanp := dec.scanp
    	var err error
    Input:
    	// help the compiler see that scanp is never negative, so it can remove
    	// some bounds checks below.
    	for scanp >= 0 {
    
    		// Look in the buffer for a new value.
    		for ; scanp < len(dec.buf); scanp++ {
    			c := dec.buf[scanp]
    			dec.scan.bytes++
    			switch dec.scan.step(&dec.scan, c) {
    			case scanEnd:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    WARNING: When running this test make sure that you have no `remote` cache configured, and storing in the `local` cache is enabled.
    These are the default settings.
    
    This would look something like this on the command-line:
    
    [listing]
    ----
    $ rm -rf ~/.gradle/caches/build-cache-1 <1>
    $ ./gradlew clean --quiet <2>
    $ ./gradlew assemble --build-cache <3>
    
    BUILD SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Functions.java

        @Override
        public int hashCode() {
          return Objects.hashCode(map, defaultValue);
        }
    
        @Override
        public String toString() {
          // TODO(cpovirk): maybe remove "defaultValue=" to make this look like the method call does
          return "Functions.forMap(" + map + ", defaultValue=" + defaultValue + ")";
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Functions.java

        @Override
        public int hashCode() {
          return Objects.hashCode(map, defaultValue);
        }
    
        @Override
        public String toString() {
          // TODO(cpovirk): maybe remove "defaultValue=" to make this look like the method call does
          return "Functions.forMap(" + map + ", defaultValue=" + defaultValue + ")";
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/select.go

    	// This provides an easy way out of "go env -w GOTOOLCHAIN=go1.19" and makes
    	// sure that "go env GOTOOLCHAIN" always prints the local go command's interpretation of it.
    	// We look for these specific command lines in order to avoid mishandling
    	//
    	//	GOTOOLCHAIN=go1.999 go env -newflag GOTOOLCHAIN
    	//
    	// where -newflag is a flag known to Go 1.999 but not known to us.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/time/example_test.go

    	// Most uses of Format and Parse use constant layout strings such as
    	// the ones defined in this package, but the interface is flexible,
    	// as these examples show.
    
    	// Define a helper function to make the examples' output look nice.
    	do := func(name, layout, want string) {
    		got := t.Format(layout)
    		if want != got {
    			fmt.Printf("error: for %q got %q; expected %q\n", layout, got, want)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/calloptions.go

    	if o.Port.Name != "" {
    		// Look up the port by name.
    		p, found := servicePorts.ForName(o.Port.Name)
    		if !found {
    			return fmt.Errorf("callOptions: no port named %s available in To Instance", o.Port.Name)
    		}
    		o.Port = p
    		return nil
    	}
    
    	if o.Port.Protocol != "" {
    		// Look up the port by protocol.
    		p, found := servicePorts.ForProtocol(o.Port.Protocol)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	}
    	logger.V(3).Info("Removed protection finalizer from PVC", "PVC", klog.KObj(pvc))
    	return nil
    }
    
    func (c *Controller) isBeingUsed(ctx context.Context, pvc *v1.PersistentVolumeClaim) (bool, error) {
    	// Look for a Pod using pvc in the Informer's cache. If one is found the
    	// correct decision to keep pvc is taken without doing an expensive live
    	// list.
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top