Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 232 for experts (0.17 sec)

  1. src/syscall/syscall_darwin.go

    	skip, err := Seek(fd, 0, 1 /* SEEK_CUR */)
    	if err != nil {
    		return 0, err
    	}
    
    	// We need to duplicate the incoming file descriptor
    	// because the caller expects to retain control of it, but
    	// fdopendir expects to take control of its argument.
    	// Just Dup'ing the file descriptor is not enough, as the
    	// result shares underlying state. Use openat to make a really
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/deadcode.go

    		names = append(names, objabi.PathToPrefix(*flagPluginPath)+"..inittask", objabi.PathToPrefix(*flagPluginPath)+".main", "go:plugin.tabs")
    
    		// We don't keep the go.plugin.exports symbol,
    		// but we do keep the symbols it refers to.
    		exportsIdx := d.ldr.Lookup("go:plugin.exports", 0)
    		if exportsIdx != 0 {
    			relocs := d.ldr.Relocs(exportsIdx)
    			for i := 0; i < relocs.Count(); i++ {
    				d.mark(relocs.At(i).Sym(), 0)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter_test.go

    				if !strings.Contains(got, want) {
    					t.Errorf(`Package("exports").Imports() = %s, does not contain %s`, got, want)
    				}
    			}
    		}
    	}
    }
    
    func TestImportTypeparamTests(t *testing.T) {
    	if testing.Short() {
    		t.Skipf("in short mode, skipping test that requires export data for all of std")
    	}
    
    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    // At runtime, Gradle expects each Gradle jar to have a classpath manifest
    val emptyClasspathManifest by tasks.registering(ClasspathManifest::class) {
        this.manifestFile = generatedPropertiesFileFor("$runtimeApiJarName-classpath")
    }
    
    // At runtime, Gradle expects to have instrumentation metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/runtime/race_s390x.s

    TEXT	runtime·racereadrangepc1(SB), NOSPLIT, $0-24
    	// void __tsan_read_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_read_range(SB), R1
    	LMG	addr+0(FP), R3, R5
    	// pc is an interceptor address, but TSan expects it to point to the
    	// middle of an interceptor (see LLVM's SCOPED_INTERCEPTOR_RAW).
    	ADD	$2, R5
    	JMP	racecalladdr<>(SB)
    
    // func runtime·racewriterange(addr, size uintptr)
    // Called from instrumented code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// In multi-cluster(shared control plane multi-networks) scenario, ingress gateway service can be of nodePort type.
    	// With this, we can populate mesh's gateway address with the node ips.
    	nodes kclient.Client[*v1.Node]
    
    	exports serviceExportCache
    	imports serviceImportCache
    	pods    *PodCache
    
    	crdHandlers                []func(name string)
    	handlers                   model.ControllerHandlers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. docs/es/docs/async.md

    Por "síncrono" (contrario a "asíncrono") también se usa habitualmente el término "secuencial", porque el sistema / programa sigue todos los pasos secuencialmente antes de cambiar a una tarea diferente, incluso si esos pasos implican esperas.
    
    ### Concurrencia y Hamburguesas
    
    El concepto de código **asíncrono** descrito anteriormente a veces también se llama **"concurrencia"**. Es diferente del **"paralelismo"**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. src/math/big/int.go

    // inverse in the ring ℤ/nℤ.  In this case, z is unchanged and the return value
    // is nil. If n == 0, a division-by-zero run-time panic occurs.
    func (z *Int) ModInverse(g, n *Int) *Int {
    	// GCD expects parameters a and b to be > 0.
    	if n.neg {
    		var n2 Int
    		n = n2.Neg(n)
    	}
    	if g.neg {
    		var g2 Int
    		g = g2.Mod(g, n)
    	}
    	var d, x Int
    	d.GCD(&x, nil, g, n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. common/scripts/kind_provisioner.sh

      if [[ ! -f "${CLUSTER_TOPOLOGY_CONFIG_FILE}" ]]; then
        log 'cluster topology configuration file is not specified'
        exit 1
      fi
    
      export CLUSTER_NAMES
      export CLUSTER_POD_SUBNETS
      export CLUSTER_SVC_SUBNETS
      export CLUSTER_NETWORK_ID
    
      KUBE_CLUSTERS=$(jq '.[] | select(.kind == "Kubernetes" or .kind == null)' "${CLUSTER_TOPOLOGY_CONFIG_FILE}")
    
      while read -r value; do
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. fastapi/_compat.py

        ) -> Dict[str, Any]:
            override_mode: Union[Literal["validation"], None] = (
                None if separate_input_output_schemas else "validation"
            )
            # This expects that GenerateJsonSchema was already used to generate the definitions
            json_schema = field_mapping[(field, override_mode or field.mode)]
            if "$ref" not in json_schema:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top