Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 166 for elts (0.93 sec)

  1. src/hash/maphash/maphash.go

    func (h *Hash) Write(b []byte) (int, error) {
    	size := len(b)
    	// Deal with bytes left over in h.buf.
    	// h.n <= bufSize is always true.
    	// Checking it is ~free and it lets the compiler eliminate a bounds check.
    	if h.n > 0 && h.n <= bufSize {
    		k := copy(h.buf[h.n:], b)
    		h.n += k
    		if h.n < bufSize {
    			// Copied the entirety of b to h.buf.
    			return size, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    In this case, also `jackson-annotation:2.9.5` will be taken, as that is how we defined our local virtual platform.
    
    For both published and virtual platforms, Gradle lets you override the version choice of the platform itself by specifying an _enforced_ dependency on the platform:
    
    .Forceful platform downgrade
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/TempFileCreator.java

      }
    
      /**
       * Creates the permissions normally used for Windows filesystems, looking up the user afresh, even
       * if previous calls have initialized the {@code PermissionSupplier} fields.
       *
       * <p>This lets us test the effects of different values of the {@code user.name} system property
       * without needing a separate VM or classloader.
       */
      @IgnoreJRERequirement // used only when Path is available (and only from tests)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/syscall/syscall_dragonfly.go

    	n := uintptr(CTL_MAXNAME) * siz
    
    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    	if err != nil {
    		return nil, err
    	}
    
    	// Magic sysctl: "setting" 0.3 to a string name
    	// lets you read back the array of integers form.
    	if err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {
    		return nil, err
    	}
    	return buf[0 : n/siz], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

        }
    
        protected void assertConf(String name, String desc, boolean visible, String[] exts) {
            def conf = metadata.configurationDefinitions[name]
            assert conf != null : "configuration not found: " + name
            assert conf.name == name
            assert conf.visible == visible
            assert conf.extendsFrom as Set == exts as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  6. README.md

    [tools](https://www.tensorflow.org/resources/tools),
    [libraries](https://www.tensorflow.org/resources/libraries-extensions), and
    [community](https://www.tensorflow.org/community) resources that lets
    researchers push the state-of-the-art in ML and developers easily build and
    deploy ML-powered applications.
    
    TensorFlow was originally developed by researchers and engineers working within
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. 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)
  8. docs/pt/docs/features.md

    * Suporte para sistemas de autenticação complexos, **conexões com banco de dados** etc.
    * **Sem comprometer** os bancos de dados, _frontends_ etc. Mas fácil integração com todos eles.
    
    ### "Plug-ins" ilimitados
    
    Ou, de outra forma, sem a necessidade deles, importe e use o código que precisar.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "FNES", argLength: 2, reg: fp2gp, asm: "FNES", commutative: true},                                                            // arg0 != arg1
    		{name: "FLTS", argLength: 2, reg: fp2gp, asm: "FLTS"},                                                                               // arg0 < arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/net/http/httptest/server.go

    			panic(fmt.Sprintf("httptest: failed to listen on a port: %v", err))
    		}
    	}
    	return l
    }
    
    // When debugging a particular http server-based test,
    // this flag lets you run
    //
    //	go test -run='^BrokenTest$' -httptest.serve=127.0.0.1:8000
    //
    // to start the broken server so you can interact with it manually.
    // We only register this flag if it looks like the caller knows about it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top