Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 653 for copied32 (0.22 sec)

  1. src/cmd/compile/internal/types2/compiler_internal.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    )
    
    // This file should not be copied to go/types.  See go.dev/issue/67477
    
    // RenameResult takes an array of (result) fields and an index, and if the indexed field
    // does not have a name and if the result in the signature also does not have a name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. tests/test_datastructures.py

        assert response.json() == {"filename": "test.txt"}
    
        assert testing_file_store
        assert testing_file_store[0].file.closed
    
    
    # For UploadFile coverage, segments copied from Starlette tests
    
    
    @pytest.mark.anyio
    async def test_upload_file():
        stream = io.BytesIO(b"data")
        file = UploadFile(filename="file", file=stream, size=4)
        assert await file.read() == b"data"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

            assertEquals("maven-core", clonedProject.getArtifactId());
            Map<?, ?> clonedMap = clonedProject.getManagedVersionMap();
            assertNotNull(clonedMap, "ManagedVersionMap not copied");
            assertTrue(clonedMap.isEmpty(), "ManagedVersionMap is not empty");
        }
    
        @Test
        void testCloneWithDependencyManagement() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/managedfields.go

    	if err != nil {
    		// The object is not a `metav1.Object`, ignore it.
    		return o
    	}
    	a.SetManagedFields(nil)
    	return o
    }
    
    // PrintObj copies the object and omits the managed fields from the copied object before printing it.
    func (p *OmitManagedFieldsPrinter) PrintObj(obj runtime.Object, w io.Writer) error {
    	if obj == nil {
    		return p.Delegate.PrintObj(obj, w)
    	}
    	if meta.IsListType(obj) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 16 14:52:03 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. src/main/webapp/css/style.css

    	color: #093;
    	font-style: normal;
    }
    
    #result .more {
    	display: none;
    }
    
    #result .info {
    	font-size: 80%;
    }
    
    #result .url-copy {
    	color: #007bff;
    }
    
    #result .url-copied {
    	color: #2c974b;
    }
    
    #result .favorited {
    	display: none;
    }
    
    #result .favorited i {
    	color: #fab005;
    }
    
    #result .thumbnail {
    	width: 100px;
    	min-height: 30px;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 02 11:39:35 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/CharStreams.java

       * close or flush either object.
       *
       * @param from the object to read from
       * @param to the object to write to
       * @return the number of characters copied
       * @throws IOException if an I/O error occurs
       */
      @CanIgnoreReturnValue
      public static long copy(Readable from, Appendable to) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            return path.replace(File.separatorChar, '/');
        }
    
        /**
         * Checks if a String is whitespace, empty ("") or null.
         * <p>
         * This function was copied from Apache Commons-Lang to restore TAPI compatibility
         * with Java 6 on old Gradle versions because StringUtils require SQLException which
         * is absent from Java 6.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/README.md

    [instructions](
    https://chromium.googlesource.com/catapult/+/refs/heads/master/tracing/docs/embedding-trace-viewer.md). This directory contains
    the helper files to embed Chrome's trace viewer.
    
    The current resources were generated/copied from
    [`Catapult@9508452e18f130c98499cb4c4f1e1efaedee8962`](
    https://chromium.googlesource.com/catapult/+/9508452e18f130c98499cb4c4f1e1efaedee8962).
    
    ### Updating `trace_viewer_full.html`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/sync/cond_test.go

    		done = true
    		m.Unlock()
    		cond.Broadcast()
    	}
    }
    
    func TestCondCopy(t *testing.T) {
    	defer func() {
    		err := recover()
    		if err == nil || err.(string) != "sync.Cond is copied" {
    			t.Fatalf("got %v, expect sync.Cond is copied", err)
    		}
    	}()
    	c := Cond{L: &Mutex{}}
    	c.Signal()
    	var c2 Cond
    	reflect.ValueOf(&c2).Elem().Set(reflect.ValueOf(&c).Elem()) // c2 := c, hidden from vet
    	c2.Signal()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 18:52:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

                // Jars that are already in the global cache don't need to be copied, since
                // the global caches are additive only and jars shouldn't be deleted or changed during the build.
                outputs.file(input);
            } else {
                // Jars that are in some mutable location (e.g. build/ directory) need to be copied to the global cache,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top