Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,366 for easier (0.81 sec)

  1. src/testing/match_test.go

    		}
    		if len(seen) > 1e6 {
    			// Free up memory.
    			reset()
    		}
    		seen[name] = subname
    	})
    }
    
    // GoString returns a string that is more readable than the default, which makes
    // it easier to read test errors.
    func (m alternationMatch) GoString() string {
    	s := make([]string, len(m))
    	for i, m := range m {
    		s[i] = fmt.Sprintf("%#v", m)
    	}
    	return fmt.Sprintf("(%s)", strings.Join(s, " | "))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

                return
              }
    
              // https://timothybasanov.com/2016/05/26/java-pre-master-secret.html
              // https://security.stackexchange.com/questions/35639/decrypting-tls-in-wireshark-when-using-dhe-rsa-ciphersuites
              // https://stackoverflow.com/questions/36240279/how-do-i-extract-the-pre-master-secret-using-an-openssl-based-client
    
              // TLSv1.2 Events
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          group.places.push(place);
        }
    
        // Order by decreasing cost (makes it easier to spot heavy functions).
        // Though alphabetical ordering is a potential alternative that will make
        // profile comparisons easier.
        groups.sort(function(a, b) {
          return (b.sumpos + b.sumneg) - (a.sumpos + a.sumneg);
        });
    
        return groups;
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     * Futures#transform(ListenableFuture, com.google.common.base.Function, Executor) Futures.transform}
     * (or {@link FluentFuture#transform(com.google.common.base.Function, Executor)
     * FluentFuture.transform}), but you will often find it easier to use a framework. Frameworks
     * automate the process, often adding features like monitoring, debugging, and cancellation.
     * Examples of frameworks include:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/OptionalTest.java

        Optional<String> optionalName = Optional.fromNullable("bob");
        assertEquals("bob", optionalName.get());
      }
    
      public void testFromNullable_null() {
        // not promised by spec, but easier to test
        assertSame(Optional.absent(), Optional.fromNullable(null));
      }
    
      public void testIsPresent_no() {
        assertFalse(Optional.absent().isPresent());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/state.go

    	// s.env contains no duplicates.
    	env := cleanEnv(initialEnv, absWork)
    
    	envMap := make(map[string]string, len(env))
    
    	// Add entries for ${:} and ${/} to make it easier to write platform-independent
    	// paths in scripts.
    	envMap["/"] = string(os.PathSeparator)
    	envMap[":"] = string(os.PathListSeparator)
    
    	for _, kv := range env {
    		if k, v, ok := strings.Cut(kv, "="); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

            Package[] getPackages(ClassLoader classLoader);
    
            @Nullable
            Package getPackage(ClassLoader classLoader, String name);
        }
    
        /**
         * This class makes it a bit easier to use {@link MethodHandles.Lookup}.
         * In order to access a method, a lookup object which is accessible to this method must be provided.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. cmd/signature-v4-parser.go

    	// Replace all spaced strings, some clients can send spaced
    	// parameters and some won't. So we pro-actively remove any spaces
    	// to make parsing easier.
    	v4Auth = strings.ReplaceAll(v4Auth, " ", "")
    	if v4Auth == "" {
    		return sv, ErrAuthHeaderEmpty
    	}
    
    	// Verify if the header algorithm is supported or not.
    	if !strings.HasPrefix(v4Auth, signV4Algorithm) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/toolchain/switch.go

    		return gover.Compare(list[i], list[j]) < 0
    	})
    	return list, nil
    }
    
    // newerToolchain implements NewerToolchain where the list of choices is known.
    // It is separated out for easier testing of this logic.
    func newerToolchain(need string, list []string) (string, error) {
    	// Consider each release in the list, from newest to oldest,
    	// considering only entries >= need and then only entries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

         * or set this property to {@code true} to disable verification of the server's identity.
         * <p>
         * Allowing communication with untrusted servers keeps data encrypted during transmission,
         * but makes it easier for a man-in-the-middle to impersonate the intended server and capture data.
         * <p>
         * This value has no effect if a server is specified using the HTTP protocol (i.e. has SSL disabled).
         *
         * @since 4.2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top