Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 700 for clip (0.04 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/InitialPropertiesConverter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.cli.converter;
    
    import org.gradle.cli.CommandLineConverter;
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    import org.gradle.cli.SystemPropertiesCommandLineConverter;
    import org.gradle.launcher.configuration.InitialProperties;
    
    import java.util.Collections;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildEnvironmentConfigurationConverter.java

    import org.gradle.launcher.cli.converter.BuildLayoutConverter;
    import org.gradle.launcher.cli.converter.BuildOptionBackedConverter;
    import org.gradle.launcher.cli.converter.InitialPropertiesConverter;
    import org.gradle.launcher.cli.converter.LayoutToPropertiesConverter;
    import org.gradle.launcher.cli.converter.StartParameterConverter;
    import org.gradle.launcher.configuration.AllProperties;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Java8Compatibility.java

     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    final class Java8Compatibility {
      static void clear(Buffer b) {
        b.clear();
      }
    
      static void flip(Buffer b) {
        b.flip();
      }
    
      static void limit(Buffer b, int limit) {
        b.limit(limit);
      }
    
      static void position(Buffer b, int position) {
        b.position(position);
      }
    
      private Java8Compatibility() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/StartParameterConverter.java

     */
    package org.gradle.launcher.cli.converter;
    
    import org.gradle.api.internal.StartParameterInternal;
    import org.gradle.api.launcher.cli.WelcomeMessageConfiguration;
    import org.gradle.api.logging.configuration.LoggingConfiguration;
    import org.gradle.cli.CommandLineArgumentException;
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    import org.gradle.cli.ProjectPropertiesCommandLineConverter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. pkg/kubectl/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-cli-maintainers
    reviewers:
      - sig-cli-reviewers
    labels:
      - area/kubectl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 17:55:35 UTC 2022
    - 156 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/org/gradle/sample/app/Main.java

    package org.gradle.sample.app;
    
    import com.google.gson.Gson;
    import org.apache.commons.beanutils.BeanUtils;
    import org.apache.commons.cli.CommandLine;
    import org.apache.commons.cli.CommandLineParser;
    import org.apache.commons.cli.DefaultParser;
    import org.apache.commons.cli.Options;
    import org.apache.commons.lang3.StringUtils;
    import org.gradle.sample.app.data.Message;
    
    public class Main {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/Java8Compatibility.java

     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    final class Java8Compatibility {
      static void clear(Buffer b) {
        b.clear();
      }
    
      static void flip(Buffer b) {
        b.flip();
      }
    
      static void limit(Buffer b, int limit) {
        b.limit(limit);
      }
    
      static void position(Buffer b, int position) {
        b.position(position);
      }
    
      private Java8Compatibility() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/example_test.go

    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if cookie, err := r.Cookie("Flavor"); err != nil {
    			http.SetCookie(w, &http.Cookie{Name: "Flavor", Value: "Chocolate Chip"})
    		} else {
    			cookie.Value = "Oatmeal Raisin"
    			http.SetCookie(w, cookie)
    		}
    	}))
    	defer ts.Close()
    
    	u, err := url.Parse(ts.URL)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 03:47:00 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  9. src/os/signal/signal_plan9_test.go

    				runtime.Gosched()
    			}
    		}
    		finished <- true
    	}()
    	time.Sleep(dur)
    	close(done)
    	<-finished
    	<-finished
    	// When run with 'go test -cpu=1,2,4' alarm from this test can slip
    	// into subsequent TestSignal() causing failure.
    	// Sleep for a while to reduce the possibility of the failure.
    	time.Sleep(10 * time.Millisecond)
    }
    
    // Test that Stop cancels the channel's registrations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  10. cmd/kubectl-convert/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-cli-maintainers
    reviewers:
      - sig-cli-reviewers
    labels:
      - area/kubectl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 17:55:35 UTC 2022
    - 156 bytes
    - Viewed (0)
Back to top