Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for elts (0.04 sec)

  1. docs/distributed/CONFIG.md

    ### Usage
    
    ```
    minio server --config config.yaml
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/nowb.go

    }
    
    func (c *nowritebarrierrecChecker) check() {
    	// We walk the call graph as late as possible so we can
    	// capture all calls created by lowering, but this means we
    	// only get to see the obj.LSyms of calls. symToFunc lets us
    	// get back to the ODCLFUNCs.
    	symToFunc := make(map[*obj.LSym]*ir.Func)
    	// funcs records the back-edges of the BFS call graph walk. It
    	// maps from the ODCLFUNC of each function that must not have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Ordering.java

       * Collections#reverseOrder(Comparator)}.
       *
       * <p><b>Java 8+ users:</b> Use {@code thisComparator.reversed()} instead.
       */
      // type parameter <S> lets us avoid the extra <String> in statements like:
      // Ordering<String> o = Ordering.<String>natural().reverse();
      @GwtCompatible(serializable = true)
      public <S extends T> Ordering<S> reverse() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    4. *Put a file called `init.gradle(.kts)`* in the `$<<installation.adoc#sec:linux_macos_users_2,__GRADLE_HOME__>>/init.d/` directory.
    +
    This lets you package a custom Gradle distribution containing custom build logic and plugins. You can combine this with the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle wrapper>> to make custom logic available to all builds in your enterprise.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/events.md

    Fazendo isso em funções separadas que não compartilham lógica ou variáveis entre elas é mais difícil já que você precisa armazenar os valores em variáveis globais ou truques parecidos.
    
    Por causa disso, agora é recomendado em vez disso usar o `lifespan` como explicado acima.
    
    ## Detalhes técnicos
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Ordering.java

       * Collections#reverseOrder(Comparator)}.
       *
       * <p><b>Java 8+ users:</b> Use {@code thisComparator.reversed()} instead.
       */
      // type parameter <S> lets us avoid the extra <String> in statements like:
      // Ordering<String> o = Ordering.<String>natural().reverse();
      @GwtCompatible(serializable = true)
      public <S extends T> Ordering<S> reverse() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    				if err != nil {
    					return nil, err
    				}
    
    				exts = append(exts, pkix.Extension{
    					Id:    oidExtensionReasonCode,
    					Value: reasonBytes,
    				})
    			}
    
    			if len(exts) > 0 {
    				rc.Extensions = exts
    			}
    			revokedCerts[i] = rc
    		}
    	}
    
    	aki, err := asn1.Marshal(authKeyId{Id: issuer.SubjectKeyId})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. src/crypto/ecdh/nist.go

    	}
    
    	// Copy the values into a fixed-size preallocated little-endian buffer.
    	// 72 bytes is enough for every scalar in this package, and having a fixed
    	// size lets us avoid heap allocations.
    	if len(a) > 72 {
    		panic("crypto/ecdh: internal error: isLess input too large")
    	}
    	bufA, bufB := make([]byte, 72), make([]byte, 72)
    	for i := range a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/strconv/atoi.go

    	if nerr, ok := err.(*NumError); ok {
    		nerr.Func = fnAtoi
    	}
    	return int(i64), err
    }
    
    // underscoreOK reports whether the underscores in s are allowed.
    // Checking them in this one function lets all the parsers skip over them simply.
    // Underscore must appear only between digits or between a base prefix and a digit.
    func underscoreOK(s string) bool {
    	// saw tracks the last character (class) we saw:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    		}
    	}
    }
    
    func (rc *reconciler) waitForVolumeAttach(volumeToMount cache.VolumeToMount) {
    	logger := klog.TODO()
    	if rc.controllerAttachDetachEnabled || !volumeToMount.PluginIsAttachable {
    		//// lets not spin a goroutine and unnecessarily trigger exponential backoff if this happens
    		if volumeToMount.PluginIsAttachable && !volumeToMount.ReportedInUse {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top