Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for IsSame (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	if err == nil {
    		err = EINVAL
    		for i := 0; i < fs_count; i++ {
    			if b2s(buffer.fsinfo[i].Mountpoint[:]) == name {
    				err = unmount_LE(b2s(buffer.fsinfo[i].Fsname[:]), mtm)
    				break
    			}
    		}
    	} else if fs_count == 0 {
    		err = EINVAL
    	}
    	return err
    }
    
    // Unmount end
    
    func direntIno(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	}
    
    	// Steal as much credit as we can from the background GC's
    	// scan credit. This is racy and may drop the background
    	// credit below 0 if two mutators steal at the same time. This
    	// will just cause steals to fail until credit is accumulated
    	// again, so in the long run it doesn't really matter, but we
    	// do have to handle the negative credit case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            if (!DefaultModelValidator.VALID_MODEL_VERSIONS.contains(superModelVersion)) {
                // Maven 3.x is always using 4.0.0 version to load the supermodel, so
                // do the same when loading a dependency.  The model validator will also
                // check that field later.
                superModelVersion = "4.0.0";
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	MOVD $32, R17
    
    	MOVD $p256mul<>+0x00(SB), CPOOL
    
    	LXVD2X (R0)(x_ptr), X0
    	LXVD2X (R16)(x_ptr), X1
    
    	XXPERMDI X0, X0, $2, X0
    	XXPERMDI X1, X1, $2, X1
    
    sqrLoop:
    	// Sqr uses same value for both
    
    	VOR	X0, X0, Y0
    	VOR	X1, X1, Y1
    
    	LXVD2X (R16)(CPOOL), P1
    	LXVD2X (R0)(CPOOL), P0
    
    	CALL p256MulInternal<>(SB)
    
    	MOVD	n+16(FP), N
    	ADD	$-1, N
    	CMP	$0, N
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    	loadedDirect := ld.allPatternIsRoot && maps.Equal(ld.Tags, imports.AnyTags())
    	if loadedDirect {
    		direct = make(map[string]bool)
    	} else {
    		// TODO(bcmills): It seems like a shame to allocate and copy a map here when
    		// it will only rarely actually vary from rs.direct. Measure this cost and
    		// maybe avoid the copy.
    		direct = make(map[string]bool, len(rs.direct))
    		for mPath := range rs.direct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. fastapi/param_functions.py

                re-used for the rest of the request.
    
                Set `use_cache` to `False` to disable this behavior and ensure the
                dependency is called again (if declared more than once) in the same request.
                """
            ),
        ] = True,
    ) -> Any:
        """
        Declare a FastAPI dependency.
    
        It takes a single "dependable" callable (like a function).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    // client or server.
    //
    // cloneTLSConfig should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/searKing/golang
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cloneTLSConfig
    func cloneTLSConfig(cfg *tls.Config) *tls.Config {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    )
    
    // SPDRP specifies device registry property codes
    // (Codes marked as read-only (R) may only be used for
    // SetupDiGetDeviceRegistryProperty)
    //
    // These values should cover the same set of registry properties
    // as defined by the CM_DRP codes in cfgmgr32.h.
    //
    // Note that SPDRP codes are zero based while CM_DRP codes are one based!
    type SPDRP uint32
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private void collectSuperConfigs(Configuration configuration, Set<Configuration> result) {
            for (Configuration superConfig : configuration.getExtendsFrom()) {
                // The result is an ordered set - so seeing the same value a second time pushes further down
                result.remove(superConfig);
                result.add(superConfig);
                collectSuperConfigs(superConfig, result);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            mavenRepo.module('org', 'direct', '1.0')
            // endorsing dependency that will cause a reselection of the parent again causing a reselection of other children
            // ("looping back" if a another child is the same as the one that was endorsed)
                .dependsOn([endorseStrictVersions: true], lib1).dependsOn(lib05).dependsOn(lib1).withModuleMetadata().publish()
    
            buildFile << """
                apply plugin: 'java-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top