Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for dirty (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    }
    
    func fakeVersion() version.Info {
    	return version.Info{
    		Major:        "42",
    		Minor:        "42",
    		GitVersion:   "42",
    		GitCommit:    "34973274ccef6ab4dfaaf86599792fa9c3fe4689",
    		GitTreeState: "Dirty",
    	}
    }
    
    // generateSelfSignedCertKey creates a self-signed certificate and key for the given host.
    // Host may be an IP or a DNS name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/database/sql/convert_test.go

    func TestUserDefinedBytes(t *testing.T) {
    	type userDefinedBytes []byte
    	var u userDefinedBytes
    	v := []byte("foo")
    
    	convertAssign(&u, v)
    	if &u[0] == &v[0] {
    		t.Fatal("userDefinedBytes got potentially dirty driver memory")
    	}
    }
    
    type Valuer_V string
    
    func (v Valuer_V) Value() (driver.Value, error) {
    	return strings.ToUpper(string(v)), nil
    }
    
    type Valuer_P string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                    public static abstract class TestAction implements WorkAction<WorkParameters.None> {
                        @Override
                        public void execute() {
                            // Make the ClassLoader "dirty" by trying to load something from it
                            assert Thread.currentThread().getContextClassLoader().getResource("/TestResource.txt") != null;
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    }
    
    func fakeVersion() version.Info {
    	return version.Info{
    		Major:        "42",
    		Minor:        "42",
    		GitVersion:   "42",
    		GitCommit:    "34973274ccef6ab4dfaaf86599792fa9c3fe4689",
    		GitTreeState: "Dirty",
    		BuildDate:    time.Now().String(),
    		GoVersion:    goruntime.Version(),
    		Compiler:     goruntime.Compiler,
    		Platform:     fmt.Sprintf("%s/%s", goruntime.GOOS, goruntime.GOARCH),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	// at this point, we know we have a coherent view of e.work.  It is entirely possible
    	// that our workqueue has another item requeued to it, but we'll pick it up early.  This ok
    	// because the next time will go into our dirty list
    
    	work := e.work[ns]
    	delete(e.work, ns)
    	delete(e.dirtyWork, ns)
    	e.inProgress.Insert(ns)
    	return ns, work, false
    }
    
    // prettyPrint formats a resource list for usage in errors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. docs/en/docs/async.md

    So, to balance that out, imagine the following short story:
    
    > You have to clean a big, dirty house.
    
    *Yep, that's the whole story*.
    
    ---
    
    There's no waiting 🕙 anywhere, just a lot of work to be done, on multiple places of the house.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                }
                try {
                    return cached.orNull();
                } finally {
                    lock.readLock().unlock();
                }
            }
    
            /**
             * Removes dirty entries from the cache. Calling System.currentTimeMillis() is costly so we should try to limit calls to this method. This method will only trigger cleanup at most once per
             * 30s.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    the pavement, and accumulating at compound interest.  	Fog everywhere. Fog up the river, where it flows among green aits and meadows; fog down the river, where it rolls defiled among the tiers of shipping and the waterside pollutions of a great (and dirty) city. Fog on the Essex marshes, fog on the Kentish heights. Fog creeping into the cabooses of collier-brigs; fog lying out on the yards and hovering in the rigging of great ships; fog drooping on the gunwales of barges and small boats. Fog in the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top