Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 9,722 for DelUse (0.18 sec)

  1. src/regexp/testdata/testregex.c

    					else
    					{
    						report("failed", fun, re, s, nstr, msg, flags, test);
    						if (eret != REG_NOMATCH)
    							error(&preg, eret);
    						else if (*ans)
    							printf("expected: %s\n", ans);
    						else
    							printf("\n");
    					}
    				}
    			}
    			else if (streq(ans, "NOMATCH"))
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  2. src/main/webapp/js/suggestor.js

                                } else {
                                  $(this).css(listSelectedCssInfo);
                                }
                              } else {
                                if (typeof listDeselectedCssInfo !== "undefined") {
                                  $(this).css(listDeselectedCssInfo);
                                } else {
                                  if (
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. test-site/public/javascripts/suggestor.js

                        listSelNum++;
                    } else if(direction == "up") {
                        listSelNum--;
                    } else {
                        return;
                    }
    
                    isFocusList = true;
    
                    if(listSelNum < 0){
                        listSelNum = listNum;
                    } else if(listSelNum > listNum) {
                        listSelNum = 0;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            } else if (event instanceof TransformProgressEvent) {
                transformProgressListeners.getSource().statusChanged(event);
            } else if (event instanceof TestOutputEvent) {
                testOutputProgressListeners.getSource().statusChanged(event);
            } else if (event instanceof BuildPhaseProgressEvent) {
                buildPhaseListeners.getSource().statusChanged(event);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. tests/gorm_test.go

    		} else if results.RowsAffected != 1 {
    			t.Fatalf("rows affected expects: %v, got %v", 1, results.RowsAffected)
    		} else if u1.ID == 0 {
    			t.Fatalf("ID expects : not equal 0, got %v", u1.ID)
    		}
    
    		got := user{}
    		results := DB.First(&got, "id = ?", u1.ID)
    		if results.Error != nil {
    			t.Fatalf("errors happened on first: %v", results.Error)
    		} else if results.RowsAffected != 1 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jun 01 07:22:21 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                    exampleClass = if (descriptor.componentType === ComponentType.LIBRARY) "Hello" else "Greeter"
                    sourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + ".cpp"
                    testSourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + "_test.cpp"
                    sourceFileTree = """        │   │   └── $sourceFile
            │   └── headers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/deepcopy.go

    		out.Default = &(defaultJSON)
    	} else {
    		out.Default = nil
    	}
    
    	if in.Example != nil {
    		exampleJSON := JSON(runtime.DeepCopyJSONValue(*(in.Example)))
    		out.Example = &(exampleJSON)
    	} else {
    		out.Example = nil
    	}
    
    	if in.Ref != nil {
    		in, out := &in.Ref, &out.Ref
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(string)
    			**out = **in
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                if (client.existsIndex(index)) {
                    if (client.deleteIndex(index)) {
                        logger.warn("Deleted {}.", index);
                    } else {
                        logger.warn("Failed to delete {}.", index);
                    }
                } else if (logger.isDebugEnabled()) {
                    logger.debug("{} does not exist.", index);
                }
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  9. test/if.go

    	count = 0
    	if true {
    		count = count + 1
    	} else {
    		count = count - 1
    	}
    	assertequal(count, 1, "if else true")
    
    	count = 0
    	if false {
    		count = count + 1
    	} else {
    		count = count - 1
    	}
    	assertequal(count, -1, "if else false")
    
    	count = 0
    	if t := 1; false {
    		count = count + 1
    		_ = t
    		t := 7
    		_ = t
    	} else {
    		count = count - t
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/duration/duration.go

    	if seconds := int(d.Seconds()); seconds < -1 {
    		return "<invalid>"
    	} else if seconds < 0 {
    		return "0s"
    	} else if seconds < 60 {
    		return fmt.Sprintf("%ds", seconds)
    	} else if minutes := int(d.Minutes()); minutes < 60 {
    		return fmt.Sprintf("%dm", minutes)
    	} else if hours := int(d.Hours()); hours < 24 {
    		return fmt.Sprintf("%dh", hours)
    	} else if hours < 24*365 {
    		return fmt.Sprintf("%dd", hours/24)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top