Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for setnle (0.18 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "everything has convention and nothing set"        | setAll("convention", "convention") | ""                    | """id = convention\nbar = convention"""
            "everything has convention and is set"             | setAll("convention", "convention") | setAll("test", "baz") | """id = test\nbar = baz"""
        }
    
        def "sensible error when conventions are set more than once (#testCase)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. cmd/format-erasure.go

    		panic(err)
    	}
    	return &dst
    }
    
    // Returns formatErasure.Erasure.Version
    func newFormatErasureV3(numSets int, setLen int) *formatErasureV3 {
    	format := &formatErasureV3{}
    	format.Version = formatMetaVersionV1
    	format.Format = formatBackendErasure
    	if setLen == 1 {
    		format.Format = formatBackendErasureSingle
    	}
    	format.ID = mustGetUUID()
    	format.Erasure.Version = formatErasureVersionV3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. src/runtime/mpallocbits.go

    	b[i/64] |= ^uint64(0) << (i % 64)
    	for k := i/64 + 1; k < j/64; k++ {
    		b[k] = ^uint64(0)
    	}
    	// Set trailing bits.
    	b[j/64] |= (uint64(1) << (j%64 + 1)) - 1
    }
    
    // setAll sets all the bits of b.
    func (b *pageBits) setAll() {
    	for i := range b {
    		b[i] = ^uint64(0)
    	}
    }
    
    // setBlock64 sets the 64-bit aligned block of bits containing the i'th bit that
    // are set in v.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    	{115, "EINPROGRESS", "operation now in progress"},
    	{116, "ESTALE", "stale file handle"},
    	{117, "EUCLEAN", "structure needs cleaning"},
    	{118, "ENOTNAM", "not a XENIX named type file"},
    	{119, "ENAVAIL", "no XENIX semaphores available"},
    	{120, "EISNAM", "is a named type file"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    	{115, "EINPROGRESS", "operation now in progress"},
    	{116, "ESTALE", "stale file handle"},
    	{117, "EUCLEAN", "structure needs cleaning"},
    	{118, "ENOTNAM", "not a XENIX named type file"},
    	{119, "ENAVAIL", "no XENIX semaphores available"},
    	{120, "EISNAM", "is a named type file"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    	{115, "EINPROGRESS", "operation now in progress"},
    	{116, "ESTALE", "stale file handle"},
    	{117, "EUCLEAN", "structure needs cleaning"},
    	{118, "ENOTNAM", "not a XENIX named type file"},
    	{119, "ENAVAIL", "no XENIX semaphores available"},
    	{120, "EISNAM", "is a named type file"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

                    LocalRepositoryManager lrm = session.getLocalRepositoryManager();
                    String path = lrm.getPathForLocalArtifact(artifactRequest.getArtifact());
                    artifact.setFile(new File(lrm.getRepository().getBasedir(), path));
    
                    RepositorySystem repoSystem = container.lookup(RepositorySystem.class);
                    result = repoSystem.resolveArtifact(session, artifactRequest);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. pilot/pkg/xds/discovery.go

    	// This will delay the push by at least this interval, plus
    	// the time getting subsequent events. If no change is
    	// detected the push will happen, otherwise we'll keep
    	// delaying until things settle.
    	DebounceAfter time.Duration
    
    	// debounceMax is the maximum time to wait for events
    	// while debouncing. Defaults to 10 seconds. If events keep
    	// showing up with no break for this time, we'll trigger a push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      if (func_uses.has_value() && llvm::hasSingleElement(func_uses.value()))
        return func;
      func::FuncOp cloned = func.clone();
      cloned.setPrivate();
      cloned.setName(
          StringAttr::get(func.getContext(), func.getName().str() + "_lifted"));
      SymbolTable(module).insert(cloned);
      return cloned;
    }
    
    // Eliminates unused results for If/Case operations. Also patches up the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	ECONNREFUSED       = Errno(1128)
    	EHOSTDOWN          = Errno(1129)
    	EHOSTUNREACH       = Errno(1130)
    	EPROCLIM           = Errno(1131)
    	EUSERS             = Errno(1132)
    	EDQUOT             = Errno(1133)
    	ESTALE             = Errno(1134)
    	EREMOTE            = Errno(1135)
    	ENOSTR             = Errno(1136)
    	ETIME              = Errno(1137)
    	ENOSR              = Errno(1138)
    	ENOMSG             = Errno(1139)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top