Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for setPath (0.16 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

                             * from the NTLMSSP type 2 message, and the share is IPC$, we
                             * assert that the tree connect path uses the netbios hostname.
                             */
                            tcax.setPath("\\\\" + this.netbiosName + "\\IPC$");
                        }
                    }
    
                    request.setSessionId(this.sessionId);
                    request.setUid(this.uid);
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter_test.go

    			vol, ok := pubs[csiMounter.volumeID]
    			if !ok {
    				t.Error("csi server may not have received NodePublishVolume call")
    			}
    			if vol.Path != csiMounter.GetPath() {
    				t.Errorf("csi server expected path %s, got %s", csiMounter.GetPath(), vol.Path)
    			}
    			if !reflect.DeepEqual(vol.MountFlags, expectedMountOptions) {
    				t.Errorf("csi server expected mount options %v, got %v", expectedMountOptions, vol.MountFlags)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                        e);
                throw problems.newModelBuilderException();
            }
    
            if (modelSource.getPath() != null) {
                model = model.withPomFile(modelSource.getPath());
            }
    
            problems.setSource(model);
            modelValidator.validateFileModel(model, request, problems);
            if (hasFatalErrors(problems)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            if (modelSource instanceof FileModelSource fms) {
                return ModelSource.fromPath(fms.getPath());
            } else if (modelSource instanceof ArtifactModelSource ams) {
                return ModelSource.fromPath(ams.getPath(), ams.toString());
            } else {
                return new ModelSource() {
                    @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    	return fv.SetUpAt(fv.getPath(), mounterArgs)
    }
    
    func (fv *FakeVolume) GetSetUpCallCount() int {
    	fv.RLock()
    	defer fv.RUnlock()
    	return fv.SetUpCallCount
    }
    
    func (fv *FakeVolume) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	return os.MkdirAll(dir, 0750)
    }
    
    func (fv *FakeVolume) GetPath() string {
    	fv.RLock()
    	defer fv.RUnlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/math/big/float_test.go

    		_, ok := x.SetString(want)
    		if !ok {
    			t.Errorf("invalid fraction %s", want)
    			continue
    		}
    		n := max(x.Num().BitLen(), x.Denom().BitLen())
    
    		var f1, f2 Float
    		f2.SetPrec(1000)
    		f1.SetRat(&x)
    		f2.SetRat(&x)
    
    		// check precision when set automatically
    		if n < 64 {
    			n = 64
    		}
    		if prec := f1.Prec(); prec != uint(n) {
    			t.Errorf("got prec = %d; want %d", prec, n)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            @Override
            public String getName() {
                return name;
            }
    
            @Override
            public String getPath() {
                return projectPath.getPath();
            }
    
            @Override
            public String toString() {
                return "dependencies '" + identityPath + "'";
            }
    
            @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)
  8. src/main/java/jcifs/smb/SmbFile.java

         *            context to use
         * @throws MalformedURLException
         */
        public SmbFile ( URL url, CIFSContext tc ) throws MalformedURLException {
            super(url);
            if ( url.getPath() != null && !url.getPath().isEmpty() && url.getPath().charAt(0) != '/' ) {
                throw new MalformedURLException("Invalid SMB URL: " + url);
            }
            this.transportContext = tc;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            return extensibleDynamicObject.getConvention();
        }
    
        @Override
        public String getPath() {
            return owner.getProjectPath().toString();
        }
    
        @Override
        public String getBuildTreePath() {
            return getIdentityPath().getPath();
        }
    
        @Override
        public Path getIdentityPath() {
            return owner.getIdentityPath();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                    result.add(new DefaultLineInFileLocation(l.getPath(), l.getLine(), l.getColumn(), l.getLength()));
                } else if (location instanceof InternalOffsetInFileLocation) {
                    InternalOffsetInFileLocation l = (InternalOffsetInFileLocation) location;
                    result.add(new DefaultOffsetInFileLocation(l.getPath(), l.getOffset(), l.getLength()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top