Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 359 for dotpath (0.11 sec)

  1. src/runtime/vdso_freebsd_x86.go

    	return *(*uint32)(unsafe.Pointer(p + _HPET_MAIN_COUNTER)), true
    }
    
    //go:systemstack
    func initHPETTimecounter(idx int) {
    	const digits = "0123456789"
    
    	var devPath [len(hpetDevPath)]byte
    	copy(devPath[:], hpetDevPath)
    	devPath[9] = digits[idx]
    
    	fd := open(&devPath[0], 0 /* O_RDONLY */ |_O_CLOEXEC, 0)
    	if fd < 0 {
    		atomic.Casuintptr(&hpetDevMap[idx], 0, ^uintptr(0))
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/ClasspathUtilTest.groovy

            when:
            def file = ClasspathUtil.getClasspathForResource(jarUrlWithResourceName, "Test.class")
    
            then:
            FILE.getPath() == file.getPath()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23625")
        def "getClasspathForResource for jar scheme with prefix resource name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/DefaultGroupTaskReportModel.java

                    int diff = STRING_COMPARATOR.compare(task1.getPath().getName(), task2.getPath().getName());
                    if (diff != 0) {
                        return diff;
                    }
                    Path parent1 = task1.getPath().getParent();
                    Path parent2 = task2.getPath().getParent();
                    if (parent1 == null && parent2 != null) {
                        return -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 08 21:50:18 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      return StatusFromTF_Status(plugin_status.get());
    }
    
    Status RegisterFilesystemPlugin(const std::string& dso_path) {
      // Step 1: Load plugin
      Env* env = Env::Default();
      void* dso_handle;
      TF_RETURN_IF_ERROR(env->LoadDynamicLibrary(dso_path.c_str(), &dso_handle));
    
      // Step 2: Load symbol for `TF_InitPlugin`
      void* dso_symbol;
      TF_RETURN_WITH_CONTEXT_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelElementProjection.java

            return InstanceModelView.of(modelNode.getPath(), MODEL_ELEMENT_MODEL_TYPE, new ModelElement() {
                @Override
                public String toString() {
                    return getDisplayName();
                }
    
                @Override
                public String getName() {
                    return modelNode.getPath().getName();
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. test/stress/parsego.go

    			// fakePkgName if we are looking at cmd documentation.
    			name := pkgName(dirpath + "/" + d.Name())
    			return name == pkgname
    		}
    		return false
    	}
    
    	// get package AST
    	pkgs, err := parser.ParseDir(token.NewFileSet(), dirpath, filter, parser.ParseComments)
    	if err != nil {
    		println("parse", dirpath, err.Error())
    		panic("go ParseDir fail: " + err.Error())
    	}
    	return pkgs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

                } catch (CommandLineArgumentException e) {
                    //we expect that all options must be applicable for each task
                    throw new TaskConfigurationException(task.getPath(), "Problem configuring task " + task.getPath() + " from command line.", e);
                }
    
                for (OptionDescriptor commandLineOptionDescriptor : commandLineOptions) {
                    final String name = commandLineOptionDescriptor.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/fsys/fsys_test.go

    		{"subdir5", "subdir5", false},
    		{"subdir5/deleted.txt", "", true},
    	}
    
    	for _, tc := range testCases {
    		gotPath, gotOK := OverlayPath(tc.path)
    		if gotPath != tc.wantPath || gotOK != tc.wantOK {
    			t.Errorf("OverlayPath(%q): got %v, %v; want %v, %v",
    				tc.path, gotPath, gotOK, tc.wantPath, tc.wantOK)
    		}
    	}
    }
    
    func TestOpen(t *testing.T) {
    	initOverlay(t, `
    {
        "Replace": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/BindingPredicate.java

            ModelType<?> type = reference.getType();
            return "{type: " + (type == null ? null : type.getDisplayName()) + ", path: " + getPath() + ", scope: " + getScope() + ", state: " + getState() + "}";
        }
    
        @Nullable
        @Override
        public ModelPath getPath() {
            return reference.getPath();
        }
    
        public ModelType<?> getType() {
            return reference.getType();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/GradleDistributionSpecs.kt

                    includeEmptyDirs = false
                }
            }
            into("docs") {
                from(docsPath)
                exclude("samples/**")
            }
        }
    
        /**
         * Offline version of the complete documentation of Gradle.
         */
        fun Project.docsDistributionSpec() = copySpec {
            val docsPath by configurations.getting
    
            from("${repoRoot()}/LICENSE")
            from("src/toplevel")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:35:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top