Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for visio (0.06 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.uplanet.signal",
    				"application/vnd.vcx",
    				"application/vnd.vd-study",
    				"application/vnd.vectorworks",
    				"application/vnd.vidsoft.vidconference",
    				"application/vnd.visio",
    				"application/vnd.visionary",
    				"application/vnd.vividence.scriptfile",
    				"application/vnd.vsf",
    				"application/vnd.wap.sic",
    				"application/vnd.wap.slc",
    				"application/vnd.wap.wbxml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    				toVisit = append(toVisit, testPath{path: visit.path + "[*]", value: item})
    			} else if !isPrimitive(visit.value.Type().Elem().Kind()) {
    				t.Logf("unhandled non-primitive map type %s: %s", visit.path, visit.value.Type().Elem())
    			}
    
    		case visit.value.Kind() == reflect.Pointer:
    			if visit.value.IsNil() {
    				if visit.value.Type().Elem().Kind() == reflect.Struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	test := &testVisitor{}
    
    	err := b.Do().Visit(test.Handle)
    	if err != nil || len(test.Infos) != 1 && test.Infos[0].Namespace != "foo" {
    		t.Fatalf("unexpected response: %v %#v", err, test.Infos)
    	}
    
    	b = newDefaultBuilder().
    		FilenameParam(true, &FilenameOptions{Recursive: false, Filenames: []string{s.URL}}).
    		NamespaceParam("test")
    
    	test = &testVisitor{}
    
    	err = b.Do().Visit(test.Handle)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def visit_AugAssign(self, node):
        lhs, lhs_ty = self.visit(node.target)
        rhs, rhs_ty = self.visit(node.value)
        ret, ret_ty = self._emit_binary_op(node.op, lhs, lhs_ty, rhs, rhs_ty)
        self.symbol_table.insert_symbol(node.target.id, ret, ret_ty)
    
      def visit_BinOp(self, node):
        lhs, lhs_ty = self.visit(node.left)
        rhs, rhs_ty = self.visit(node.right)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/TypeToken.java

            visit(type.getLowerBounds());
            visit(type.getUpperBounds());
          }
    
          @Override
          void visitParameterizedType(ParameterizedType type) {
            visit(type.getActualTypeArguments());
            visit(type.getOwnerType());
          }
    
          @Override
          void visitGenericArrayType(GenericArrayType type) {
            visit(type.getGenericComponentType());
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeToken.java

            visit(type.getLowerBounds());
            visit(type.getUpperBounds());
          }
    
          @Override
          void visitParameterizedType(ParameterizedType type) {
            visit(type.getActualTypeArguments());
            visit(type.getOwnerType());
          }
    
          @Override
          void visitGenericArrayType(GenericArrayType type) {
            visit(type.getGenericComponentType());
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                } else {
                    return new Visitor() {
                        @Override
                        public void visit(Service service) {
                            // Ignore the decorated service
                            if (service != decorates) {
                                visitor.visit(service);
                            }
                        }
                    };
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            given:
            collection.from('ignore')
    
            when:
            collection.buildDependencies.getDependencies(null)
    
            then:
            0 * _
        }
    
        def "can visit structure when collection contains paths"() {
            def visitor = Mock(FileCollectionStructureVisitor)
            def one = testDir.file('one')
            def two = testDir.file('two')
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

      // Invokes func on p and on all of its operands recursively.  Does not invoke
      // `func` on the same Predicate instance twice.  Aborts the search if `func`
      // returns true.
      template <typename FunctionTy>
      static void Visit(Predicate* p, const FunctionTy& func);
    
     protected:
      explicit Predicate(int64_t id) : id_(id) {}
    
     private:
      const int64_t id_;
    
      Predicate(const Predicate&) = delete;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            output.contains("result = [lib2-5.6.jar.txt, lib1-1.3.jar.txt]")
        }
    
        @ToBeFixedForConfigurationCache(because = "treating file collection visit failures as a configuration cache problem adds an additional failure to the build summary")
        def "transform does not execute when dependencies cannot be found"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
Back to top