Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 162 for below (0.05 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    	.dark-mode {
    		.site-header {
    			-webkit-box-shadow: none;
    			-moz-box-shadow: none;
    			box-shadow: none;
    			z-index: 2;
    		}
    	}
    
    	/*
          Pushes the section headings to just below the top nav bar when a user
          navigates directly to section anchors.
         */
    	#content h2[id],
    	#content h3[id],
    	#content h4[id],
    	#content h5[id] {
    		padding-top: 60px;
    	}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    			v := b.Values[i]
    			regValLiveSet.remove(v.ID)
    			if v.Op == OpPhi {
    				// Remove v from the live set, but don't add
    				// any inputs. This is the state the len(b.Preds)>1
    				// case below desires; it wants to process phis specially.
    				continue
    			}
    			if opcodeTable[v.Op].call {
    				// Function call clobbers all the registers but SP and SB.
    				regValLiveSet.clear()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * supplied {@code Future} is done, unless this {@code Future} has already been cancelled or set
       * (including "set asynchronously," defined below).
       *
       * <p>If the supplied future is {@linkplain #isDone done} when this method is called and the call
       * is accepted, then this future is guaranteed to have been completed with the supplied future by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * supplied {@code Future} is done, unless this {@code Future} has already been cancelled or set
       * (including "set asynchronously," defined below).
       *
       * <p>If the supplied future is {@linkplain #isDone done} when this method is called and the call
       * is accepted, then this future is guaranteed to have been completed with the supplied future by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Status: status,
    				},
    			},
    		},
    	}
    
    	return p
    }
    
    func expectActions(t *testing.T, actions []k8stesting.Action, num int, verb, resource string) {
    	t.Helper()
    	// if actions are less the below logic will panic
    	if num > len(actions) {
    		t.Fatalf("len of actions %v is unexpected. Expected to be at least %v", len(actions), num+1)
    	}
    
    	for i := 0; i < num; i++ {
    		relativePos := len(actions) - i - 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    This task has the following effect:
    
    image::copy-with-deep-filter-example.png[]
    
    Remember that a deep filter like this has the side effect of copying the directory structure below `reports` and the files.
    If you want to copy the files without the directory structure, you must use an explicit `fileTree(_dir_) { _includes_ }.files` expression.
    
    [[sec:copying_directories_example]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. cmd/sts-handlers_test.go

      "mygroup": {
        "version": 1,
        "status": "enabled",
        "members": [
          "foo"
        ],
        "updatedAt": "2024-04-23T21:34:43.587429659Z"
      }
    }
    `,
    		// The `cn=projecty,..` group below is not under a configured DN, but we
    		// should still import without an error.
    		allSvcAcctsFile: `{
        "u4ccRswj62HV3Ifwima7": {
            "parent": "uid=svc.algorithm,OU=swengg,DC=min,DC=io",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    				return CMPeq
    			}
    		}
    	}
    
    	if c := t.Sym().cmpsym(x.Sym()); c != CMPeq {
    		return c
    	}
    
    	if x.obj != nil {
    		return CMPeq
    	}
    	// both syms nil, look at structure below.
    
    	switch t.kind {
    	case TBOOL, TFLOAT32, TFLOAT64, TCOMPLEX64, TCOMPLEX128, TUNSAFEPTR, TUINTPTR,
    		TINT8, TINT16, TINT32, TINT64, TINT, TUINT8, TUINT16, TUINT32, TUINT64, TUINT:
    		return CMPeq
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy_test.go

    		backURL, _ := url.Parse(backend.URL)
    		rp := NewSingleHostReverseProxy(backURL)
    		r := req(t, "GET / HTTP/1.0\r\n\r\n")
    		r.Body = nil // this accidentally worked in Go 1.4 and below, so keep it working
    		rp.ServeHTTP(w, r)
    	}))
    	defer frontend.Close()
    
    	res, err := http.Get(frontend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbSessionImpl.java

                        this.transport.release();
                    }
                }
            }
            else if ( usage < 0 ) {
                throw new RuntimeCIFSException("Usage count dropped below zero");
            }
        }
    
    
        /**
         * @return the sessionKey
         * @throws CIFSException
         */
        @Override
        public byte[] getSessionKey () throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
Back to top