Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 2,372 for light (0.06 sec)

  1. guava/src/com/google/common/io/TempFileCreator.java

                    return acl;
                  }
                };
            return () -> attribute;
          } catch (IOException e) {
            // We throw a new exception each time so that the stack trace is right.
            return () -> {
              throw new IOException("Could not find user", e);
            };
          }
        }
    
        private static String getUsername() {
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RegularContiguousSet.java

          }
        };
      }
    
      private static boolean equalsOrThrow(Comparable<?> left, @CheckForNull Comparable<?> right) {
        return right != null && Range.compareOrThrow(left, right) == 0;
      }
    
      @Override
      boolean isPartialView() {
        return false;
      }
    
      @Override
      public C first() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/contracts/descriptorContractUtils.kt

            logicalOr.left.accept(),
            logicalOr.right.accept(),
            KaContractBinaryLogicExpression.KaLogicOperation.OR
        )
    
        override fun visitLogicalAnd(logicalAnd: LogicalAnd, data: Unit): Any = KaContractBinaryLogicExpression(
            logicalAnd.left.accept(),
            logicalAnd.right.accept(),
            KaContractBinaryLogicExpression.KaLogicOperation.AND
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/GradleUserHomeScopeFileTimeStampInspector.java

         * And if the provided timestamp is in `millisecond` precision, then we will definitely detect changes for that file correctly.
         * But if it's in `second` precision we might not detect changes, and we might need to discard the hash at the end of the build.
         */
        private boolean isReliableTimestampPrecision(long timestamp) {
            return isCurrentTimestampHighPrecision || isHighTimestampPrecision(timestamp);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    Always keep in mind that the solution you choose to fix a problem can "leak" to your consumers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/log/slog/logger_test.go

    	check(`level=INFO msg=info a.i=1`)
    }
    
    func TestConnections(t *testing.T) {
    	var logbuf, slogbuf bytes.Buffer
    
    	// Revert any changes to the default logger. This is important because other
    	// tests might change the default logger using SetDefault. Also ensure we
    	// restore the default logger at the end of the test.
    	currentLogger := Default()
    	currentLogWriter := log.Writer()
    	currentLogFlags := log.Flags()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Component.puml

        FontColor #000000
        BackgroundColor COMPONENT_BG_COLOR
        BorderColor #78A8D8
    }
    
    ' Layout
    ' ##################################
    
    !definelong LAYOUT_WITH_LEGEND
    hide stereotype
    legend right
    |=              |= Type |
    |<PERSON_BG_COLOR>      | person |
    |<EXTERNAL_PERSON_BG_COLOR>      | external person |
    |<SYSTEM_BG_COLOR>   | system |
    |<EXTERNAL_SYSTEM_BG_COLOR>      | external system |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pkg/util/iptree/iptree.go

    	for bitPosition < mask {
    		// Look for a child checking the bit position after the mask
    		n = n.child[getBitFromAddr(address, bitPosition+1)]
    		if n == nil {
    			return zeroT, false
    		}
    		// check we are in the right branch comparing the suffixes
    		if !n.prefix.Contains(address) {
    			return zeroT, false
    		}
    		// update the new bit position with the new node mask
    		bitPosition = n.prefix.Bits()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/software_architecture.puml

    }
    
    package "Application Layer" {
      [server-application]
      [android-app]
    }
    
    package "Business Logic Layer" {
      [user-feature]
      [admin-feature]
    }
    
    package "Domain Model Layer" {
      [domain-model] <-right- [state]
    }
    
    [server-application] -down-> [user-feature]
    [server-application] -down-> [admin-feature]
    [android-app] -down-> [user-feature]
    
    [user-feature] -down-> [domain-model]
    [user-feature] -down-> [state]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 886 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/multi-common-summary.adoc.template

    * Run similar named tasks in all subprojects
    * Run a task in a specific subproject
    * Build, bundle and run the application
    
    == Next steps
    
    When your project grows, you might be interested in more details how to configure JVM projects, structuring multi-project builds and dependency management:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 718 bytes
    - Viewed (0)
Back to top