Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 922 for Nicely (0.13 sec)

  1. test/fixedbugs/bug390.go

    // errorcheck
    
    // Copyright 2011 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 2627 -- unsafe.Pointer type isn't handled nicely in some errors
    
    package main
    
    import "unsafe"
    
    func main() {
    	var x *int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 459 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/client_ca.go

    	clientCA    caBundleContent
    	servingCert certKeyContent
    	sniCerts    []sniCertKeyContent
    }
    
    // caBundleContent holds the content for the clientCA bundle.  Wrapping the bytes makes the Equals work nicely with the
    // method receiver.
    type caBundleContent struct {
    	caBundle []byte
    }
    
    func (c *dynamicCertificateContent) Equal(rhs *dynamicCertificateContent) bool {
    	if c == nil || rhs == nil {
    		return c == rhs
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/exceptions/InvalidGpgKeyIdsException.java

        private final List<String> wrongKeys;
    
        /**
         * Creates a new exception with a list of incorrect keys.
         *
         * @param wrongKeys the list of incorrect IDs, which will be nicely formatted as part of the exception messages so the user can find them
         */
        public InvalidGpgKeyIdsException(List<String> wrongKeys) {
            this.wrongKeys = wrongKeys;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. cmd/update-notifier.go

    	if globalServerCtxt.JSON {
    		return fmt.Sprintf("You are running an older version of MinIO released %s, update: %s", newerThan, downloadURL)
    	}
    
    	// Return the nicely colored and formatted update message.
    	return colorizeUpdateMessage(downloadURL, newerThan)
    }
    
    // colorizeUpdateMessage - inspired from Yeoman project npm package https://github.com/yeoman/update-notifier
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/AbstractCompatibilityTestInterceptor.java

                    + " must follow a certain naming convention, e.g. name must contain 'CrossVersion' substring.\n"
                    + "This way we can include/exclude those test nicely and it is easier to configure the CI.\n"
                    + "Please include 'CrossVersion' in the name of the test: '" + target.getSimpleName() + "'");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/internal/txtar/archive.go

    //
    // The goals for the format are:
    //
    //   - be trivial enough to create and edit by hand.
    //   - be able to store trees of text files describing go command test cases.
    //   - diff nicely in git history and code reviews.
    //
    // Non-goals include being a completely general archive format,
    // storing binary data, storing file modes, storing special files like
    // symbolic links, and so on.
    //
    // # Txtar format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. docs/works_with_okhttp.md

    Works with OkHttp
    =================
    
    Here’s some libraries that work nicely with OkHttp.
    
     * [Chucker](https://github.com/ChuckerTeam/chucker): An in-app HTTP inspector for Android OkHttp clients.
     * [Coil](https://github.com/coil-kt/coil): An image loading library for Android backed by Kotlin Coroutines.
     * [Communicator](https://github.com/Taig/Communicator): An OkHttp wrapper for Scala built with Android in mind.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/benchmark.cc

          sum_us_trimmed += us;
          ++count_us_trimmed;
        }
        if (i < count_best) {
          sum_us_best += us;
          ++count_us_best;
        }
      }
      // Prepare nicely-formatted data.
      const int kBufSize = 1000;
      char buf[kBufSize];
      snprintf(buf, kBufSize, "Mean with %2.0f%% trimmed:", trim_ratio * 100);
      std::string label_trimmed(buf);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. src/go/ast/print.go

    	default:
    		v := x.Interface()
    		switch v := v.(type) {
    		case string:
    			// print strings in quotes
    			p.printf("%q", v)
    			return
    		case token.Pos:
    			// position values can be printed nicely if we have a file set
    			if p.fset != nil {
    				p.printf("%s", p.fset.Position(v))
    				return
    			}
    		}
    		// default
    		p.printf("%v", v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/workload.go

    	go watchPortForward(cfg, w)
    
    	return w, nil
    }
    
    // watchPortForward wait watch the health of a port-forward connection. If a disconnect is detected, the workload is reconnected.
    // TODO: this isn't structured very nicely. We have a port forwarder that can notify us when it fails (ErrChan) and we are competing with
    // the pod informer which is sequenced via mutex. This could probably be cleaned up to be more event driven, but would require larger refactoring.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top