Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 323 for xremove (0.37 sec)

  1. src/cmd/go/go_test.go

    	tg.wantExecutable(tg.path("bin/b"+exeSuffix), "go install example/a example/b did not install binaries")
    	tg.must(os.Remove(tg.path("bin/a" + exeSuffix)))
    	tg.must(os.Remove(tg.path("bin/b" + exeSuffix)))
    	tg.run("install", "-tags", "mytag", "example/...")
    	tg.wantExecutable(tg.path("bin/a"+exeSuffix), "go install example/... did not install binaries")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            if (injectedProfileIds != null) {
                this.injectedProfileIds.put(source, new ArrayList<>(injectedProfileIds));
            } else {
                this.injectedProfileIds.remove(source);
            }
        }
    
        /**
         * Gets the identifiers of all profiles that contributed to this project's effective model. This includes active
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

          NavigableSet<E> navigableSet) {
        return Synchronized.navigableSet(navigableSet);
      }
    
      /** Remove each element in an iterable from a set. */
      static boolean removeAllImpl(Set<?> set, Iterator<?> iterator) {
        boolean changed = false;
        while (iterator.hasNext()) {
          changed |= set.remove(iterator.next());
        }
        return changed;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	testenv.MustHaveSymlink(t)
    
    	defer chtmpdir(t)()
    
    	err := Symlink("x", "y")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer Remove("y")
    
    	err = Symlink("y", "x")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer Remove("x")
    
    	_, err = Stat("x")
    	if _, ok := err.(*fs.PathError); !ok {
    		t.Errorf("expected *PathError, got %T: %v\n", err, err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            for (Configuration superConfig : configuration.getExtendsFrom()) {
                // The result is an ordered set - so seeing the same value a second time pushes further down
                result.remove(superConfig);
                result.add(superConfig);
                collectSuperConfigs(superConfig, result);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. src/runtime/map.go

    //
    // makemap_small should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname makemap_small
    func makemap_small() *hmap {
    	h := new(hmap)
    	h.hash0 = uint32(rand())
    	return h
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/MapsTest.java

          iterator.next();
          iterator.remove();
          fail("UnsupportedOperationException expected");
        } catch (UnsupportedOperationException expected) {
        }
    
        Set<Entry<Integer, String>> entries = unmod.entrySet();
        try {
          Iterator<Entry<Integer, String>> iterator = entries.iterator();
          iterator.next();
          iterator.remove();
          fail("UnsupportedOperationException expected");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_arm64.go

    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    	EPROTONOSUPPORT = Errno(0x5d)
    	EPROTOTYPE      = Errno(0x5b)
    	ERANGE          = Errno(0x22)
    	EREMCHG         = Errno(0x4e)
    	EREMOTE         = Errno(0x42)
    	EREMOTEIO       = Errno(0x79)
    	ERESTART        = Errno(0x55)
    	ERFKILL         = Errno(0x84)
    	EROFS           = Errno(0x1e)
    	ESHUTDOWN       = Errno(0x6c)
    	ESOCKTNOSUPPORT = Errno(0x5e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.6K bytes
    - Viewed (0)
  9. cmd/sts-handlers_test.go

    	// Validate that the client cannot remove any objects
    	err = minioClient.RemoveObject(ctx, bucket, "someobject", minio.RemoveObjectOptions{})
    	if err.Error() != "Access Denied." {
    		c.Fatalf("unexpected non-access-denied err: %v", err)
    	}
    
    	// Remove the policy assignment on the user DN:
    	err = s.adm.SetPolicy(ctx, "", userDN, false)
    	if err != nil {
    		c.Fatalf("Unable to remove policy setting: %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketRemoteArnInvalid: {
    		Code:           "XMinioAdminRemoteArnInvalid",
    		Description:    "The bucket remote ARN does not have correct format",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrRemoteTargetNotVersionedError: {
    		Code:           "RemoteTargetNotVersionedError",
    		Description:    "The remote target does not have versioning enabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top