Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for grandparent (0.26 sec)

  1. src/main/webapp/css/admin/adminlte.min.css.map

    ease;\n}\n\n@media (prefers-reduced-motion: reduce) {\n  .progress-bar {\n    transition: none;\n  }\n}\n\n.progress-bar-striped {\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n  -webkit-animation: progress-bar-stripes 1s linear infinite;\n  animation: progress-bar-stripes 1s linear infinite;\n}\n\n@media...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 2M bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * A managed type is transparent to the model space, and enforces immutability at the appropriate times in the object's lifecycle.
     * <p>
     * Gradle generates implementations for managed types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      font-family: 'Roboto', 'Noto', sans-serif;
      font-size: 1em;
      line-height: 24px;
      color: #212121;
    }
    .downArrow {
      border-top: .36em solid #ccc;
      border-left: .36em solid transparent;
      border-right: .36em solid transparent;
      margin-bottom: .05em;
      margin-left: .5em;
      transition: border-top-color 200ms;
    }
    .menu-item {
      height: 100%;
      text-transform: uppercase;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. src/image/png/writer_test.go

    			if y%2 == 0 {
    				mixedImg.Set(x, y, opaqueColor)
    			}
    		}
    	}
    
    	testCases := []struct {
    		name string
    		img  image.Image
    	}{
    		{"Transparent RGBA", transparentImg},
    		{"Opaque RGBA", opaqueImg},
    		{"50/50 Transparent/Opaque RGBA", mixedImg},
    		{"RGBA with variable alpha", translucentImg},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			m0 := tc.img
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 14 08:14:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/Handler.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.SmbConstants;
    import jcifs.context.SingletonContext;
    
    
    /**
     * URL handler for transparent smb:// URL handling
     * 
     */
    public class Handler extends URLStreamHandler {
    
        private static final Logger log = LoggerFactory.getLogger(Handler.class);
        private CIFSContext transportContext;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 06 09:14:24 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  6. doc/godebug.md

    setting](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial).
    
    Go 1.22 changed how the runtime interacts with transparent huge pages on Linux.
    In particular, a common default Linux kernel configuration can result in
    significant memory overheads, and Go 1.22 no longer works around this default.
    To work around this issue without adjusting kernel settings, transparent huge
    pages can be disabled for Go memory with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/image/image_test.go

    		return NewPaletted(Rect(0, 0, 10, 10), color.Palette{
    			Transparent,
    			Opaque,
    		})
    	}},
    }
    
    func TestImage(t *testing.T) {
    	for _, tc := range testImages {
    		m := tc.image()
    		if !Rect(0, 0, 10, 10).Eq(m.Bounds()) {
    			t.Errorf("%T: want bounds %v, got %v", m, Rect(0, 0, 10, 10), m.Bounds())
    			continue
    		}
    		if !cmp(m.ColorModel(), Transparent, m.At(6, 3)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  8. src/image/geom.go

    // well-formed inputs.
    //
    // A Rectangle is also an [Image] whose bounds are the rectangle itself. At
    // returns color.Opaque for points in the rectangle and color.Transparent
    // otherwise.
    type Rectangle struct {
    	Min, Max Point
    }
    
    // String returns a string representation of r like "(3,4)-(6,5)".
    func (r Rectangle) String() string {
    	return r.Min.String() + "-" + r.Max.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/net/http/doc.go

    		ReadTimeout:    10 * time.Second,
    		WriteTimeout:   10 * time.Second,
    		MaxHeaderBytes: 1 << 20,
    	}
    	log.Fatal(s.ListenAndServe())
    
    # HTTP/2
    
    Starting with Go 1.6, the http package has transparent support for the
    HTTP/2 protocol when using HTTPS. Programs that must disable HTTP/2
    can do so by setting [Transport.TLSNextProto] (for clients) or
    [Server.TLSNextProto] (for servers) to a non-nil, empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/main/webapp/css/bootstrap.min.css.map

    caret-down() {\n  border-top: $caret-width solid;\n  border-right: $caret-width solid transparent;\n  border-bottom: 0;\n  border-left: $caret-width solid transparent;\n}\n\n@mixin caret-up() {\n  border-top: 0;\n  border-right: $caret-width solid transparent;\n  border-bottom: $caret-width solid;\n  border-left: $caret-width solid transparent;\n}\n\n@mixin caret-right() {\n  border-top: $caret-width solid transparent;\n  border-right: 0;\n  border-bottom: $caret-width solid transparent;\n  border-left:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 626.8K bytes
    - Viewed (0)
Back to top