Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 161 for unhappy (0.47 sec)

  1. test/fixedbugs/issue19764.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 19764: test that the linker's trampoline insertion
    // pass is happy with direct calls to interface wrappers that
    // may be defined in multiple packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 02 03:25:02 UTC 2017
    - 348 bytes
    - Viewed (0)
  2. licenses/github.com/klauspost/compress/s2/LICENSE

    Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
    Copyright (c) 2019 Klaus Post. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 06 23:19:43 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

            "@platforms//:__subpackages__",
            "@png//:__subpackages__",
            "@pthreadpool//:__subpackages__",
            "@pybind11//:__subpackages__",
            "@ruy//:__subpackages__",
            "@snappy//:__subpackages__",
            "@sobol_data//:__subpackages__",
            "@stablehlo//:__subpackages__",
            "//:__subpackages__",
            "@upb//:__subpackages__",
            "@XNNPACK//:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/flatmultimodule/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

    package webinar;
    
    import org.apache.commons.lang.StringUtils;
    
    public class Webinar implements Demoable {
      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModule/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

    package webinar;
    
    import org.apache.commons.lang.StringUtils;
    
    public class Webinar implements Demoable {
      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
  6. licenses/github.com/klauspost/compress/snappy/LICENSE

    Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 19:13:15 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. licenses/github.com/klauspost/compress/internal/snapref/LICENSE

    Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 19:13:15 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingImmutableCollection.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Dummy class that makes the GWT serialization policy happy. It isn't used on the server-side.
     *
     * @author Hayward Chan
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    class ForwardingImmutableCollection {
      private ForwardingImmutableCollection() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 972 bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ForwardingImmutableCollection.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Dummy class that makes the GWT serialization policy happy. It isn't used on the server-side.
     *
     * @author Hayward Chan
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    class ForwardingImmutableCollection {
      private ForwardingImmutableCollection() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 972 bytes
    - Viewed (0)
  10. cni/pkg/plugin/cnieventclient_test.go

    	testServer := httptest.NewServer(http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
    		res.WriteHeader(http.StatusOK)
    		res.Write([]byte("server happy"))
    	}))
    	defer func() { testServer.Close() }()
    
    	cniC := fakeCNIEventClient(testServer.URL)
    
    	err := PushCNIEvent(cniC, fakeCmdArgs, []*cniv1.IPConfig{&fakePrevResultIPConfig}, "testpod", "testns")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top