Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for Write (0.09 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    verifyAll(receivedProblem(index as Integer)) {
                        fqid == 'validation:property-validation:cannot-write-to-reserved-location'
                        contextualLabel == "Property \'output\' points to \'${reserved.absolutePath}\' which is managed by Gradle"
                        details == 'Trying to write an output to a read-only location which is for Gradle internal use only'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    	if rs != nil || opts.PartNumber > 0 {
    		statusCodeWritten = true
    		w.WriteHeader(http.StatusPartialContent)
    	}
    
    	// Write object content to response body
    	if _, err = xioutil.Copy(httpWriter, gr); err != nil {
    		if !httpWriter.HasWritten() && !statusCodeWritten {
    			// write error response only if no data or headers has been written to client yet
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			w.Write(keyBytes)
    
    		// /c/d/bar/.well-known/openid-configuration is used to test issuer url and discovery url with a path
    		case "/.well-known/openid-configuration", "/c/d/bar/.well-known/openid-configuration":
    			w.Header().Set("Content-Type", "application/json")
    			klog.V(5).Infof("%v: returning: %+v", r.URL, *openIDConfig)
    			w.Write([]byte(*openIDConfig))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
          "dev": true
        },
        "node_modules/write-file-atomic": {
          "version": "5.0.1",
          "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz",
          "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  5. src/cmd/trace/testdata/go122.test

    String id=88
    	data="syscall.write"
    String id=89
    	data="syscall.Write"
    String id=90
    	data="internal/poll.(*FD).Write"
    String id=91
    	data="os.(*File).write"
    String id=92
    	data="/usr/local/google/home/mknyszek/work/go-1/src/os/file_posix.go"
    String id=93
    	data="os.(*File).Write"
    String id=94
    	data="/usr/local/google/home/mknyszek/work/go-1/src/os/file.go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

          T44, T45, T46, T47, T48, T49, T50> Tail;
    };
    
    
    }  // namespace internal
    
    // We don't want to require the users to write TypesN<...> directly,
    // as that would require them to count the length.  Types<...> is much
    // easier to write, but generates horrible messages when there is a
    // compiler error, as gcc insists on printing out each template
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

          T44, T45, T46, T47, T48, T49, T50> Tail;
    };
    
    
    }  // namespace internal
    
    // We don't want to require the users to write TypesN<...> directly,
    // as that would require them to count the length.  Types<...> is much
    // easier to write, but generates horrible messages when there is a
    // compiler error, as gcc insists on printing out each template
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        current_input_index[input_axis] = i;
        // Write the value from `input_tensor` if it is the last axis or
        // recurse into the next axis.
        if (is_last_axis) {
          int64_t input_flat_index = ElementsAttr::getFlattenedIndex(
              input_shape_type, current_input_index);
          // Address of input element to write raw data.
          const char* input_element_addr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

            return if (chunked) -1L else size
          }
    
          override fun writeTo(sink: BufferedSink) {
            var count = 0
            while (count < size) {
              sink.write(buffer, 0, Math.min(size - count, writeSize.toLong()).toInt())
              count += writeSize
            }
          }
        }
      }
    
      @Test
      fun emptyResponseBody() {
        server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

          // independent of the initial capacity, except that it won't be lower than the threshold
          // computed from that capacity. Because the internal table is only allocated on the first
          // write, we won't see copying because of the new threshold. So it is always OK to use the
          // calculation here.
          return (int) Math.ceil(expectedSize / 0.75);
        }
        return Integer.MAX_VALUE; // any large value
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top