Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for ecsites (0.29 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	}
    	// Compare call sites.
    	for k, ve := range ecsites {
    		if vd, ok := dcsites[k]; !ok {
    			t.Errorf("testcase %q missing expected callsite %q in func %q", tc, k, dfn)
    			continue
    		} else {
    			if vd != ve {
    				t.Errorf("testcase %q callsite %q in func %q: got %+v want %+v",
    					tc, k, dfn, vd.String(), ve.String())
    			}
    		}
    	}
    	for k := range dcsites {
    		if _, ok := ecsites[k]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/go/types/gcsizes.go

    // Source: ../../cmd/compile/internal/types2/gcsizes.go
    
    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    type gcSizes struct {
    	WordSize int64 // word size in bytes - must be >= 4 (32bits)
    	MaxAlign int64 // maximum alignment in bytes - must be >= 1
    }
    
    func (s *gcSizes) Alignof(T Type) (result int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/gcsizes.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types2
    
    type gcSizes struct {
    	WordSize int64 // word size in bytes - must be >= 4 (32bits)
    	MaxAlign int64 // maximum alignment in bytes - must be >= 1
    }
    
    func (s *gcSizes) Alignof(T Type) (result int64) {
    	defer func() {
    		assert(result >= 1)
    	}()
    
    	// For arrays and structs, alignment is defined in terms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_test.go

    					t.Log("csiTest.VolumeAll failed: ", err)
    					return
    				}
    			}
    
    			if test.isInline && attachPlug != nil {
    				t.Fatal("csiTest.VolumeAll AttachablePlugin found with ephemeral volume")
    			}
    			if !test.isInline && attachPlug == nil {
    				t.Fatal("csiTest.VolumeAll AttachablePlugin not found with PV")
    			}
    
    			var devicePath string
    			if attachPlug != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/background-tasks.md

    ```Python hl_lines="13  15  22  25"
    {!../../../docs_src/background_tasks/tutorial002.py!}
    ```
    
    Dans cet exemple, les messages seront écrits dans le fichier `log.txt` après que la réponse soit envoyée.
    
    S'il y avait une `query` (paramètre nommé `q`) dans la requête, alors elle sera écrite dans `log.txt` via une tâche d'arrière-plan.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    	if !c.enabled {
    		return info, nil
    	}
    
    	info.Enabled = true
    	info.Name = c.state.Name
    	info.Sites = make([]madmin.PeerInfo, 0, len(c.state.Peers))
    	for _, peer := range c.state.Peers {
    		info.Sites = append(info.Sites, peer)
    	}
    	sort.Slice(info.Sites, func(i, j int) bool {
    		return info.Sites[i].Name < info.Sites[j].Name
    	})
    
    	info.ServiceAccountAccessKey = c.state.ServiceAccountAccessKey
    	return info, nil
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. docs/site-replication/README.md

    # Automatic Site Replication
    
    This feature allows multiple independent MinIO sites (or clusters) that are using the same external IDentity Provider (IDP) to be configured as replicas. In this situation the set of replica sites are referred to as peer sites or just sites. When site-replication is enabled on a set of sites, the following changes are replicated to all other sites:
    
    - Creation and deletion of buckets and objects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. cmd/encryption-v1_test.go

    		// for the read.
    		readLen := int64(6)*humanize.MiByte + 1
    		if lsum(test.decSizes) >= readLen {
    			o, l, skip, sn, ps, err := test.oi.GetDecryptedRange(&HTTPRangeSpec{true, -readLen, -1})
    			if err != nil {
    				t.Errorf("Case %d: unexpected err: %v", i, err)
    			}
    
    			oRef, lRef, skipRef, snRef, psRef := decryptedRangeRef(test.decSizes, 0, readLen, true)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 24 04:17:08 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedClosuresHelper.java

        private InstrumentedClosuresHelper() {
        }
    
        @SuppressWarnings("unused") // call sites generated by instrumentation in `CallInterceptionClosureInstrumentingClassVisitor`
        public static void enterInstrumentedClosure(InstrumentableClosure thisClosure) {
            INSTANCE.enterClosure(thisClosure);
        }
    
        @SuppressWarnings("unused") // call sites generated by instrumentation in `CallInterceptionClosureInstrumentingClassVisitor`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallSiteDecorator.java

    import org.codehaus.groovy.runtime.callsite.CallSite;
    import org.gradle.api.NonNullApi;
    
    import java.lang.invoke.MethodHandles;
    
    /**
     * A handler for Groovy call sites, including Indy ones, which is used to replace the call sites of some calls at runtime,
     * in order to alter their behavior.
     */
    @NonNullApi
    public interface CallSiteDecorator {
        CallSite maybeDecorateGroovyCallSite(CallSite originalCallSite);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 27 13:58:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top